1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-21 09:31:59 +03:00
openwrt-xburst/openwrt/target/default/target_skeleton/sbin/backup
nbd c2ba34acd7 add simple scripts for backup/restore
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@534 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-04-02 21:13:50 +00:00

39 lines
671 B
Bash
Executable File

#!/bin/sh
for param in $*; do
case "$param" in
-n)
SAVE_NVRAM=y
;;
*)
OUTPUT_FILE="$param"
esac
done
if [ "$OUTPUT_FILE" = "-" ]; then
echo "Writing backup to stdout.." >&2
elif [ "$OUTPUT_FILE" = "" ]; then
echo "No output file."
else
echo "Writing backup to $OUTPUT_FILE" >&2
exec > "$OUTPUT_FILE"
fi
echo __FILELIST__
find /etc -type f > /tmp/.wlbackup_files
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
echo __FILES__
tar -T /tmp/.wlbackup_files -cz 2>/dev/null
rm -f /tmp/.wlbackup_files