SirLoinOfSteak
Occasional Visitor
I've created a /jffs/scripts/services-start scripts to bring up some of the services I notice are not starting up. However, I noticed that the services themselves are not yet available on the filesystem itself at this point:
After SSH is up and I can login, I can see these commands are there:
Which scripts could I use to ensure these commands are available when I execute them? Thinking of just looping through looking for these files within services-start.
Thx,
Code:
admin@ASUS-MERLIN-INTERNET:/jffs/scripts# ls -altri /opt/etc/init.d/S50quagga
131441 -rwxr-xr-x 1 admin root 6740 Oct 18 21:12 /opt/etc/init.d/S50quagga
admin@ASUS-MERLIN-INTERNET:/jffs/scripts#
+ /opt/etc/init.d/S50quagga start
/jffs/scripts/services-start: line 7: /opt/etc/init.d/S50quagga: not found
+ cat /etc/TZ
+ export TZ=EST5DST,M3.2.0/1,M11.1.0/1
+ awk -F= /ntp_server0/{ print $2 }
+ nvram show
+ NTP0=192.168.0.46
+ ntpdate 192.168.0.46
/jffs/scripts/services-start: line 11: ntpdate: not found
+ date
After SSH is up and I can login, I can see these commands are there:
Code:
admin@ASUS-MERLIN-INTERNET:/jffs/scripts# ls -altri /opt/etc/init.d/S50quagga
131441 -rwxr-xr-x 1 admin root 6740 Oct 18 21:12 /opt/etc/init.d/S50quagga
admin@ASUS-MERLIN-INTERNET:/jffs/scripts# which ntpdate
/opt/sbin/ntpdate
admin@ASUS-MERLIN-INTERNET:/jffs/scripts#
Which scripts could I use to ensure these commands are available when I execute them? Thinking of just looping through looking for these files within services-start.
Thx,