mirror of
https://github.com/gutosie/neoboot.git
synced 2025-12-29 03:29:51 +01:00
43 lines
1.5 KiB
Bash
43 lines
1.5 KiB
Bash
#!/bin/sh
|
|
# script gutosie
|
|
# here you can add your own command to perform
|
|
# line - Checking internet connection by @j00zek thank you
|
|
if [ -f /.control_boot_new_image ] ; then
|
|
passwd -d root
|
|
ln -sf "/usr/lib/enigma2/python/Plugins/Extensions/NeoBoot" "/NeoBoot"
|
|
fi
|
|
if [ ! -f `cat /usr/lib/enigma2/python/Plugins/Extensions/NeoBoot/.location`ImageBoot/.neonextboot ] ; then
|
|
mkdir `cat /usr/lib/enigma2/python/Plugins/Extensions/NeoBoot/.location`
|
|
/usr/lib/enigma2/python/Plugins/Extensions/NeoBoot/files/neo.sh
|
|
echo "_________Start -neo.sh- mount point location NEOBOOT_________"
|
|
fi
|
|
if [ ! -e /usr/bin/enigma2_pre_start.sh ]; then
|
|
/usr/lib/enigma2/python/Plugins/Extensions/NeoBoot/files/mountpoint.sh
|
|
echo "_________Start -mountpoint.sh- location NEOBOOT_________"
|
|
fi
|
|
if [ -f /.control_boot_new_image ] ; then
|
|
break ;
|
|
else
|
|
echo "_(Checking internet connection)..."
|
|
ping -c 1 github.com 1>/dev/null 2>%1
|
|
if [ $? -gt 0 ]; then
|
|
echo -n "github server unavailable"
|
|
echo -n "The network has no connection. It is not OK"
|
|
echo -n "Network restart..."
|
|
echo "_____restart network connection_____"
|
|
/etc/init.d/networking restart;
|
|
sleep 5
|
|
else
|
|
echo "github server available"
|
|
echo "The network has a connection. It is OK"
|
|
fi
|
|
fi
|
|
if [ -f /%1 ] ; then
|
|
rm -f /%1
|
|
fi
|
|
if [ -f /home/root/%1 ] ; then
|
|
rm -f /home/root/%1
|
|
fi
|
|
echo "_____[NEOBOOT] used userscript_____ "
|
|
exit 0
|