14 lines
200 B
Bash
Executable File
14 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
/home/pi/bin/_boot/notify_boot.sh || true
|
|
|
|
if [ "$1" != "" ]; then
|
|
echo Boot tests
|
|
else
|
|
/home/pi/bin/_boot/nas.sh || true
|
|
fi
|
|
|
|
/home/pi/bin/_boot/audio_boot_notification || true
|
|
|
|
exit 0
|