]> CyberLeo.Net >> Repos - CDN/Mosi.git/blob - overlay/sbin/saveconfig
Fix saveconfig to actually work
[CDN/Mosi.git] / overlay / sbin / saveconfig
1 #!/bin/sh
2
3 echo -n "Saving configuration... "
4
5 if [ ! -f /etc/diskless ]
6 then
7     echo "No flash setup detected."
8     exit 1
9 fi
10
11 # Find all files newer than /etc/diskless and print them out
12 find_newer_files() {
13   [ -d "${1}" ] || return 1
14   find "${1}" -type f -not -regex '.*/tmp/*.' -newer /etc/diskless -print
15 }
16
17 # Archive all newer files into a gzipped cpio archive
18 archive_cpio() {
19   [ -d "${1}" ] || return 1
20   [ -f "${2}" ] && return 1
21   find_newer_files "${1}" | cpio -o --quiet | gzip -9 > "${2}"
22 }
23
24 # Archive specified files to named target
25 archive() {
26   archive_cpio "${1}" "${2}.cpio.gz"
27 }
28
29 # Mount /conf read-write, and upgrade to read-write if mounted read-only.
30 if grep -q /conf /etc/fstab
31 then
32   _conf_mount=yes
33   mount | grep -q /conf && _conf_mounted=yes
34   mount | grep /conf | grep -q read-only && _conf_readonly=yes
35
36   # Mount if unmounted
37   [ ! "${_conf_mounted}" ] && mount -w /conf
38
39   # Upgrade to read/write
40   [ "${_conf_mounted}" -a "${_conf_readonly}" ] && mount -u -w /conf
41 fi
42
43 # Store config in temp staging area
44 rm -Rf /conf/tmp || exit 1
45 mkdir -p /conf/tmp || exit 1
46 archive /etc /conf/tmp/etc || exit 1
47 archive /var /conf/tmp/var || exit 1
48
49 # Rotate current config to dated backup
50 # Unlimited history method: (make sure you have provisions for removing the old backups, or this can get HUGE!
51 dest="$(date -r "$(stat -f '%c' "/conf/default")" "+%Y-%m-%dT%H-%M-%S")"
52 mv /conf/default "/conf/backup/${dest}" || exit 1
53
54 # Move temp config to current
55 mv /conf/tmp /conf/default || mv "/conf/backup/${dest}" "/conf/default"
56
57 # Umount /conf afterwards, if it wasn't mounted
58 if [ "${_conf_mount}" ]
59 then
60   # Unmount if it wasn't mounted
61   [ ! "${_conf_mounted}" ] && umount /conf
62
63   # Downgrade to read-only if it was read-only
64   [ "${_conf_mounted}" -a "${_conf_readonly}" ] && mount -u -r -f /conf
65 fi
66
67 echo "Done!"