diff options
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/netstart | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/netstart b/etc/netstart index d27e519..58d05a7 100755 --- a/etc/netstart +++ b/etc/netstart @@ -47,10 +47,10 @@ if [ -r /etc/rc.pccard ]; then . /etc/rc.pccard fi -if [ -f /etc/rc.network ]; then +if [ -r /etc/rc.network ]; then . /etc/rc.network else - echo 'Sorry, I can't find /etc/rc.network - aborting' + echo 'Sorry, I cannot find /etc/rc.network - aborting' exit 1 fi |