Скрипт в /etc/rc.local для Ubuntu 13.10

Материал из wiki.nntc.nnov.ru
Перейти к навигации Перейти к поиску

Вместо двух команд, которые раньше были напрямую добавлены в /etc/rc.local, был создан скрипт

cat /opt/startup.sh
#!/bin/bash
for i in $(ls /home/ | grep -v 'lightdm')
do
/bin/rm -rf --one-file-system /home/$i
done
/usr/bin/ocsinventory-agent
cat /etc/rc.local 
#!/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.
bash /opt/startup.sh
exit 0