Por que a mensagem de status do avahi-daemon.service está “inicializando” permanentemente?

2
$ systemctl status avahi-daemon
● avahi-daemon.service - Avahi mDNS/DNS-SD Stack
   Loaded: loaded (/usr/lib/systemd/system/avahi-daemon.service; enabled; vendor preset: enabled)
   Active: active (running) since Tue 2018-05-08 08:01:52 BST; 8h ago
 Main PID: 817 (avahi-daemon)
   Status: "avahi-daemon 0.7 starting up."
    Tasks: 2 (limit: 4915)
   Memory: 1.8M
   CGroup: /system.slice/avahi-daemon.service
           ├─817 avahi-daemon: running [alan-laptop.local]
           └─852 avahi-daemon: chroot helper

$ rpm -q avahi
avahi-0.7-12.fc28.x86_64
    
por sourcejedi 08.05.2018 / 17:36

1 resposta

2

O código-fonte do código-fonte avahi-daemon inclui várias outras mensagens de status, por exemplo

sd_notifyf(0, "STATUS=Server startup complete. Host name is %s. Local service cookie is %u.", avahi_server_get_host_name_fqdn(s), avahi_server_get_local_service_cookie(s));

No entanto, por padrão, o avahi-daemon insere um chroot seguro durante a inicialização. Isso significa que não é possível acessar o soquete de notificação systemd /run/systemd/notify . Ele bloqueou o envio de mensagens de status para o systemd. Opa.

# ls -l /proc/817/root
lrwxrwxrwx. 1 root root 0 May  8 16:27 /proc/817/root -> /etc/avahi
# ls -l /proc/817/root/
-rw-r--r--. 1 root root 1753 Jul 10  2017 avahi-daemon.conf
drwxr-xr-x. 2 root root 4096 Apr  6 16:48 etc
-rw-r--r--. 1 root root 1121 Jul 10  2017 hosts
drwxr-xr-x. 2 root root 4096 Apr  6 16:48 services
    
por 08.05.2018 / 17:36

Tags