pure-ftpd falha ao instalar (Não foi possível examinar o diretório / etc / pure-ftpd / conf)

0

Tenho tido alguns problemas com a configuração do pure-ftpd. Eu decidi removê-lo completamente antes de reinstalá-lo novamente, no entanto, eu acidentalmente removi os arquivos de configuração antes de desinstalar o programa com apt-get . Meu problema agora está reinstalando (ou tentando) faz com que a instalação falhe com a seguinte saída;

root@server:~# apt-get install pure-ftpd
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  libfile-copy-recursive-perl openbsd-inetd update-inetd
The following NEW packages will be installed
  libfile-copy-recursive-perl openbsd-inetd pure-ftpd update-inetd
0 to upgrade, 4 to newly install, 0 to remove and 2 not to upgrade.
Need to get 0 B/277 kB of archives.
After this operation, 929 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Preconfiguring packages ...
Selecting previously unselected package libfile-copy-recursive-perl.
(Reading database ... 54154 files and directories currently installed.)
Preparing to unpack .../libfile-copy-recursive-perl_0.38-1_all.deb ...
Unpacking libfile-copy-recursive-perl (0.38-1) ...
Selecting previously unselected package update-inetd.
Preparing to unpack .../update-inetd_4.43_all.deb ...
Unpacking update-inetd (4.43) ...
Selecting previously unselected package openbsd-inetd.
Preparing to unpack .../openbsd-inetd_0.20091229-2ubuntu3_amd64.deb ...
Unpacking openbsd-inetd (0.20091229-2ubuntu3) ...
Selecting previously unselected package pure-ftpd.
Preparing to unpack .../pure-ftpd_1.0.36-1.1_amd64.deb ...
Unpacking pure-ftpd (1.0.36-1.1) ...
Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
Processing triggers for ureadahead (0.100.0-16) ...
Setting up libfile-copy-recursive-perl (0.38-1) ...
Setting up update-inetd (4.43) ...
Setting up openbsd-inetd (0.20091229-2ubuntu3) ...
 * Stopping internet superserver inetd                                                                                                                           [ OK ]
 * Not starting internet superserver: no services enabled
Processing triggers for ureadahead (0.100.0-16) ...
Setting up pure-ftpd (1.0.36-1.1) ...
Starting ftp server: /usr/sbin/pure-ftpd-wrapper: Couldn't examine directory /etc/pure-ftpd/conf: No such file or directory
invoke-rc.d: initscript pure-ftpd, action "start" failed.
dpkg: error processing package pure-ftpd (--configure):
 subprocess installed post-installation script returned error exit status 2
Processing triggers for ureadahead (0.100.0-16) ...
Errors were encountered while processing:
 pure-ftpd
E: Sub-process /usr/bin/dpkg returned an error code (1)

Eu tentei criar novamente os diretórios /etc/pure-ftpd/ , /etc/pure-ftpd/conf/ e /etc/pure-ftpd/auth/ , mas isso resulta em arquivos de configuração realmente sendo criados e isso é algo que eu quero.

Como eu removo totalmente o pure-ftpd e depois o reinstalo do zero?

    
por dwilson390 28.01.2016 / 21:01

1 resposta

0

Encontrou a solução para este problema. Parece que o pure-ftpd-common também foi instalado, eu acho que este pacote funciona com os arquivos de configuração e o seguinte comando resolve esse problema;

apt-get remove --purge pure-ftpd pure-ftpd-common
    
por dwilson390 29.01.2016 / 18:59