Script de inicialização no Debian 8 (Jessie) com etherwake não funciona

4

Estou tentando acionar remotamente uma máquina escrava quando o mestre inicializa através de um script bash usando o comando etherwake para enviar pacotes mágicos. Ambos os sistemas operacionais são Debian 8. O código completo está escrito abaixo:

/etc/init.d/etherwake

#!/bin/sh
#/etc/init.d/etherwake

### BEGIN INIT INFO
# Provides: etherwake
# Required-Start: $all
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start etherwake at boot time
# Description: Enable service provided by etherwake.
### END INIT INFO

ETHERWAKE=/usr/sbin/etherwake

case "$1" in

        start)
                echo  "Booting slaves through etherwake..."
                $ETHERWAKE <MAC Address>
                echo  "Finished booting all slaves."
                ;;

        stop)
                echo "Stop not implemented. Doing nothing"
                ;;

        restart|force-reload)
                $0 stop
                sleep 10
                $0 start
                ;;

        *)
                echo "Usage: /etc/init.d/etherwake {start}"
                exit 1
                ;;
esac

exit 0

Depois de escrever o script, eu fiz:

  1. chmod 755 /etc/init.d/etherwake
  2. update-rc.d etherwake defaults
  3. Reinicialize o sistema por meio de shutdown -r now

Eu também tentei usar /etc/rc.local de 3 maneiras diferentes:

/etc/rc.local

#!/bin/sh -e
#
# rc.local

/etc/init.d/etherwake
etherwake <MAC Address>
/usr/sbin/etherwake <MAC Address>
exit 0

Sem sorte. Quando eu executo /etc/rc.local ou /etc/init.d/etherwake manualmente como root, tudo funciona bem. Eu pensei que poderia ser algo com as permissões, mas tanto quanto eu li qualquer script em /etc/init.d é executado como root por padrão. O que estou fazendo errado?

Obrigado antecipadamente.

Editar:

Eu entendo que o Debian 8 usa systemd ao invés de sysvinit. Depois de configurar tudo systemctl -l status etherwake.service me dá:

● etherwake.service - Etherwake magic packet service
   Loaded: loaded (/etc/systemd/system/etherwake.service; enabled)
   Active: inactive (dead) since Fri 2016-09-30 16:30:56 BRT; 1min 33s ago
  Process: 824 ExecStart=/etc/init.d/etherwake start (code=exited, status=0/SUCCESS)
 Main PID: 824 (code=exited, status=0/SUCCESS)

Sep 30 16:30:56 hostname etherwake[824]: Booting slaves through etherwake...
Sep 30 16:30:56 hostname etherwake[824]: Finished booting all slaves.

E /etc/systemd/system/etherwake.service é:

[Unit]
Description=Etherwake magic packet service
Wants=network-online.target
After=syslog.service network.target network-online.target

[Service]
ExecStart=/etc/init.d/etherwake start

[Install]
WantedBy=default.target

Outra coisa que notei é que a execução de systemctl restart etherwake funciona como um encanto.

    
por Gabriel Rebello 30.09.2016 / 16:12

1 resposta

0

O problema é que update-rc.d etherwake defaults talvez não funcione. Tente ativar o serviço por meio de systemctl , execute:

systemctl enable etherwake
    
por 24.03.2017 / 13:38