rc.local não chamado ao iniciar o sistema

0

Aqui está o rc.local completo

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

touch /home/jack/test.txt
bash /home/jack/Scripts/select_wallpaper.sh

exit 0

Ao executar o script manualmente, nenhum problema ocorre e tudo funciona bem. Eu tentei colocar o comando de teste touch no rc.local mas nada acontece !? Eu verifiquei o sysv-rc-conf e ele está ativado! O que estou perdendo ??

Aqui está o conteúdo do meu /etc/init.d/rc.local :

 #! /bin/sh
### BEGIN INIT INFO
# Provides:          rc.local
# Required-Start:    $all
# Required-Stop:
# Default-Start:     2 3 4 5
# Default-Stop:
# Short-Description: Run /etc/rc.local if it exist
### END INIT INFO

PATH=/sbin:/usr/sbin:/bin:/usr/bin

. /lib/init/vars.sh
. /lib/lsb/init-functions

do_start() {
    if [ -x /etc/rc.local ]; then
        [ "$VERBOSE" != no ] && log_begin_msg "Running local boot scripts (/etc/rc.local)"
    /etc/rc.local
    ES=$?
    [ "$VERBOSE" != no ] && log_end_msg $ES
    return $ES
fi
}

echo $1 > /home/jack/test.txt

case "$1" in
start)
do_start
    ;;
restart|reload|force-reload)
    echo "Error: argument '$1' not supported" >&2
    exit 3
    ;;
stop)
    ;;
*)
    echo "Usage: $0 start|stop" >&2
    exit 3
    ;;
esac

Inseri a linha echo $1 > /home/dan/test.txt , mas nada está escrito lá !? Quando eu executo como sudo /etc/init.d/rc.local start tudo funciona bem apenas não ao inicializar o sistema!?

    
por wasp256 13.10.2014 / 21:12

1 resposta

1

Eu coloquei o script nos aplicativos de inicialização e agora funciona bem

    
por wasp256 17.10.2014 / 19:40