From: Felix Fietkau Date: Sun, 3 Apr 2005 09:25:38 +0000 (+0000) Subject: remove nvram support from backup script X-Git-Tag: reboot~33174 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=aae9a9ade0ee51c2a3c306449071c8084d569ba3;p=oweals%2Fopenwrt.git remove nvram support from backup script SVN-Revision: 538 --- diff --git a/openwrt/target/default/target_skeleton/sbin/backup b/openwrt/target/default/target_skeleton/sbin/backup index cdf41b946a..33bad53501 100755 --- 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