90 lines
2.1 KiB
Bash
Executable File
90 lines
2.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
source /lib/functions.sh
|
|
|
|
case "$1" in
|
|
save)
|
|
if [ ! -z "$2" ]; then
|
|
uci set "linkease.@linkease[0].preconfig=$2"
|
|
uci commit
|
|
fi
|
|
;;
|
|
|
|
load)
|
|
if [ -f "/usr/sbin/preconfig.data" ]; then
|
|
data="`cat /usr/sbin/preconfig.data`"
|
|
uci set "linkease.@linkease[0].preconfig=${data}"
|
|
uci commit
|
|
rm /usr/sbin/preconfig.data
|
|
else
|
|
data="`uci -q get linkease.@linkease[0].preconfig`"
|
|
fi
|
|
|
|
if [ -z "${data}" ]; then
|
|
echo "nil"
|
|
else
|
|
echo "${data}"
|
|
fi
|
|
|
|
;;
|
|
|
|
local_save)
|
|
if [ ! -z "$2" ]; then
|
|
uci set "linkease.@linkease[0].local_home=$2"
|
|
uci commit
|
|
ROOT_DIR="$2"
|
|
if [ -f "/etc/config/quickstart" ]; then
|
|
config_load quickstart
|
|
config_get MAIN_DIR main main_dir ""
|
|
config_get CONF_DIR main conf_dir ""
|
|
config_get PUB_DIR main pub_dir ""
|
|
config_get DL_DIR main dl_dir ""
|
|
config_get TMP_DIR main tmp_dir ""
|
|
# echo "$MAIN_DIR $CONF_DIR $PUB_DIR $DL_DIR $TMP_DIR"
|
|
if [ "$ROOT_DIR" = "$MAIN_DIR" ]; then
|
|
exit 0
|
|
fi
|
|
uci set "quickstart.main.main_dir=$ROOT_DIR"
|
|
if [ -z "$CONF_DIR" -o "$CONF_DIR" = "$MAIN_DIR/Configs" ]; then
|
|
uci set "quickstart.main.conf_dir=$ROOT_DIR/Configs"
|
|
fi
|
|
if [ -z "$PUB_DIR" -o "$PUB_DIR" = "$MAIN_DIR/Public" ]; then
|
|
uci set "quickstart.main.pub_dir=$ROOT_DIR/Public"
|
|
fi
|
|
if [ -z "$DL_DIR" -o "$DL_DIR" = "$MAIN_DIR/Public/Downloads" ]; then
|
|
uci set "quickstart.main.dl_dir=$ROOT_DIR/Public/Downloads"
|
|
fi
|
|
if [ -z "$TMP_DIR" -o "$TMP_DIR" = "$MAIN_DIR/Caches" ]; then
|
|
uci set "quickstart.main.tmp_dir=$ROOT_DIR/Caches"
|
|
fi
|
|
uci commit
|
|
fi
|
|
fi
|
|
;;
|
|
|
|
local_load)
|
|
if [ -f "/etc/config/quickstart" ]; then
|
|
data="`uci -q get quickstart.main.main_dir`"
|
|
fi
|
|
if [ -z "$data" ]; then
|
|
data="`uci -q get linkease.@linkease[0].local_home`"
|
|
fi
|
|
|
|
if [ -z "${data}" ]; then
|
|
echo "nil"
|
|
else
|
|
echo "${data}"
|
|
fi
|
|
|
|
;;
|
|
|
|
status)
|
|
echo "TODO"
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: $0 {save|load|status}"
|
|
exit 1
|
|
esac
|
|
|