projects
/
openwrt
/
staging
/
zorun.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd2e7a5
)
remove nvram support from backup script
author
Felix Fietkau
<nbd@openwrt.org>
Sun, 3 Apr 2005 09:25:38 +0000
(09:25 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Sun, 3 Apr 2005 09:25:38 +0000
(09:25 +0000)
SVN-Revision: 538
openwrt/target/default/target_skeleton/sbin/backup
patch
|
blob
|
history
diff --git
a/openwrt/target/default/target_skeleton/sbin/backup
b/openwrt/target/default/target_skeleton/sbin/backup
index cdf41b946a61355686677033d7985c5ecaa72531..33bad535015927c481256d3933f60047775200d7 100755
(executable)
--- a/
openwrt/target/default/target_skeleton/sbin/backup
+++ b/
openwrt/target/default/target_skeleton/sbin/backup
@@
-1,11
+1,9
@@
#!/bin/sh
for param in $*; do
case "$param" in
- -n)
- SAVE_NVRAM=y
- ;;
*)
OUTPUT_FILE="$param"
+ ;;
esac
done
@@
-13,6
+11,7
@@
if [ "$OUTPUT_FILE" = "-" ]; then
echo "Writing backup to stdout.." >&2
elif [ "$OUTPUT_FILE" = "" ]; then
echo "No output file."
+ exit 1
else
echo "Writing backup to $OUTPUT_FILE" >&2
exec > "$OUTPUT_FILE"
@@
-25,11
+24,6
@@
cat /tmp/.wlbackup_files
echo __IPKG__
cat /etc/ipkg.conf
-if [ "$1" = "-n" ]; then
- echo __NVRAM__
- nvram show 2>/dev/null
-fi
-
echo __PACKAGES__
grep '^Package:' /usr/lib/ipkg/status | cut -d' ' -f2