summaryrefslogtreecommitdiff
path: root/share
authorzecke <zecke>2004-10-10 16:23:46 (UTC)
committer zecke <zecke>2004-10-10 16:23:46 (UTC)
commit96e6046ac26725836d38832a6e3a491351deeb53 (patch) (side-by-side diff)
treee3c84c1757403426faafbadfb7130c0d480a9ba2 /share
parent44f716e0f0aaf35869558a805e0fa7791996897a (diff)
downloadopie-96e6046ac26725836d38832a6e3a491351deeb53.zip
opie-96e6046ac26725836d38832a6e3a491351deeb53.tar.gz
opie-96e6046ac26725836d38832a6e3a491351deeb53.tar.bz2
-Stop bashism
-Do not use /usr/bin/env but the full qualified path to the executable
Diffstat (limited to 'share') (more/less context) (ignore whitespace changes)
-rw-r--r--share/opie-console/sl6000_embedix_kill_0_1.sh14
-rw-r--r--share/opie-console/sl6000_embedix_restart_0_1.sh14
2 files changed, 14 insertions, 14 deletions
diff --git a/share/opie-console/sl6000_embedix_kill_0_1.sh b/share/opie-console/sl6000_embedix_kill_0_1.sh
index 369c23e..434d7fb 100644
--- a/share/opie-console/sl6000_embedix_kill_0_1.sh
+++ b/share/opie-console/sl6000_embedix_kill_0_1.sh
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/bin/sh
# Use egrep to fid out if we need to comment /etc/sync/serialctl
# from the inittab
-/usr/bin/env egrep -q '^pd:[0-9]:respawn:/etc/sync/serialctl' /etc/inittab 2>/dev/null
+/bin/egrep -q '^pd:[0-9]:respawn:/etc/sync/serialctl' /etc/inittab 2>/dev/null
# If egrep did not find an enabled /etc/sync/serialctl in /etc/inittab,
# exit now (nothing to do)
@@ -11,19 +11,19 @@ if [ $? -ne 0 ]; then
fi
# This "cp -af" is to get the perms correct on /etc/inittab.tmp
-/usr/bin/env cp -af /etc/inittab /etc/inittab.tmp
+/bin/cp -af /etc/inittab /etc/inittab.tmp
# This sed comments out the "etc/sync/serialctl" line
-/usr/bin/env sed 's%^\(pd:[0-9]:respawn:/etc/sync/serialctl\)%#\1%' /etc/inittab > /etc/inittab.tmp
+/bin/sed 's%^\(pd:[0-9]:respawn:/etc/sync/serialctl\)%#\1%' /etc/inittab > /etc/inittab.tmp
# We have not yet modified /etc/inittab, so to stay on the safe side
# only modify it if the sed succeeded at what we asked it to do.
if [ $? -eq 0 ]; then
# This "cp -af" puts the new /etc/inittab into place
- /usr/bin/env cp -af /etc/inittab.tmp /etc/inittab
+ /bin/cp -af /etc/inittab.tmp /etc/inittab
# Unlink the tmp file
- rm /etc/inittab.tmp
+ /bin/rm /etc/inittab.tmp
# HUP init
- /usr/bin/env kill -HUP 1
+ /bin/kill -HUP 1
fi
diff --git a/share/opie-console/sl6000_embedix_restart_0_1.sh b/share/opie-console/sl6000_embedix_restart_0_1.sh
index 4ce0e7e..a0a79b5 100644
--- a/share/opie-console/sl6000_embedix_restart_0_1.sh
+++ b/share/opie-console/sl6000_embedix_restart_0_1.sh
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/bin/sh
# Use egrep to fid out if we need to comment /etc/sync/serialctl
# from the inittab
-/usr/bin/env egrep -q '^#pd:[0-9]:respawn:/etc/sync/serialctl' /etc/inittab 2>/dev/null
+/bin/egrep -q '^#pd:[0-9]:respawn:/etc/sync/serialctl' /etc/inittab 2>/dev/null
# If egrep did not find an enabled /etc/sync/serialctl in /etc/inittab,
# exit now (nothing to do)
@@ -11,19 +11,19 @@ if [ $? -ne 0 ]; then
fi
# This "cp -af" is to get the perms correct on /etc/inittab.tmp
-/usr/bin/env cp -af /etc/inittab /etc/inittab.tmp
+/bin/cp -af /etc/inittab /etc/inittab.tmp
# This sed comments out the "etc/sync/serialctl" line
-/usr/bin/env sed 's%^#\(pd:[0-9]:respawn:/etc/sync/serialctl\)%\1%' /etc/inittab > /etc/inittab.tmp
+/bin/sed 's%^#\(pd:[0-9]:respawn:/etc/sync/serialctl\)%\1%' /etc/inittab > /etc/inittab.tmp
# We have not yet modified /etc/inittab, so to stay on the safe side
# only modify it if the sed succeeded at what we asked it to do.
if [ $? -eq 0 ]; then
# This "cp -af" puts the new /etc/inittab into place
- /usr/bin/env cp -af /etc/inittab.tmp /etc/inittab
+ /bin/cp -af /etc/inittab.tmp /etc/inittab
# Unlink the tmp file
- rm /etc/inittab.tmp
+ /bin/rm /etc/inittab.tmp
# HUP init
- /usr/bin/env kill -HUP 1
+ /bin/kill -HUP 1
fi