pull/339/head
Christopher Young 2016-03-21 13:04:05 -04:00
rodzic b2eb382c1a
commit dfc6635f94
2 zmienionych plików z 0 dodań i 23 usunięć

Wyświetl plik

@ -57,7 +57,6 @@ cp -f sshd_config mnt/etc/ssh/sshd_config
#stratux files
cp -f ../libdump978.so mnt/usr/lib/libdump978.so
cp -f ../linux-mpu9150/libimu.so mnt/usr/lib/libimu.so
cp -f rc.local mnt/etc/rc.local
#go1.5.1 setup
cp -rf /root/go mnt/root/

Wyświetl plik

@ -1,22 +0,0 @@
#!/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.
# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi
nohup /usr/sbin/wifi_watch.sh 0<&- &> /var/log/stratux/wifi_watch.log &
exit 0