summaryrefslogtreecommitdiff
path: root/package/base-files/extra
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-11-29 19:45:19 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-11-29 19:45:19 +0100
commitb3a54c520195f3cab1109cb90de8179e4dff433f (patch)
tree6728c4cdb14fd18a6b7c040c7d395a2d5603fc74 /package/base-files/extra
parent81b38e16646cc758202b51b5174da63e2e09646a (diff)
add bridging firewall stuff
- tested with a transparent squid proxy - fix some minor other stuff - not completely ready
Diffstat (limited to 'package/base-files/extra')
-rwxr-xr-xpackage/base-files/extra/init3
-rwxr-xr-xpackage/base-files/extra/sbin/update9
2 files changed, 5 insertions, 7 deletions
diff --git a/package/base-files/extra/init b/package/base-files/extra/init
index 9013065d0..db8c3a676 100755
--- a/package/base-files/extra/init
+++ b/package/base-files/extra/init
@@ -1,5 +1,5 @@
#!/bin/sh
-echo "Pre-boot initializing"
+echo "Starting system ..."
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
mount -nt proc proc /proc
mount -o nosuid,nodev,noexec -t sysfs sysfs /sys
@@ -19,5 +19,4 @@ mount -o remount,rw /
cat /etc/.rnd >/dev/urandom 2>&1
[ -f /etc/fstab ] && mount -a
[ -x /sbin/cfgfs ] && { cfgfs setup; mount -o remount,ro /;}
-echo "Starting system"
exec /sbin/init
diff --git a/package/base-files/extra/sbin/update b/package/base-files/extra/sbin/update
index 83807ccf5..10d6e58c2 100755
--- a/package/base-files/extra/sbin/update
+++ b/package/base-files/extra/sbin/update
@@ -18,17 +18,17 @@ check_exit() {
}
extract_from_file() {
- cat $1 | gunzip -c | tar -xvf -
+ cat $1 | gunzip -c | tar -xf -
check_exit
}
extract_from_ssh() {
- ssh $1 "cat $2" | gunzip -c | tar -xvf -
+ ssh $1 "cat $2" | gunzip -c | tar -xf -
check_exit
}
extract_from_http() {
- wget -O - $1 | gunzip -c | tar -xvf -
+ wget -O - $1 | gunzip -c | tar -xf -
check_exit
}
@@ -61,5 +61,4 @@ esac
sync
mount -o bind /etc /tmp/.cfgfs/root
-echo "Check with cfgfs status if you need to merge and save any changes in /etc."
-echo "You should reboot now."
+echo "Update sucessful. You should reboot now."