forked from ungleich-public/cdist
[__timezone] add support for openwrt
This commit is contained in:
parent
3e82b0085b
commit
27471a4a82
2 changed files with 13 additions and 1 deletions
|
@ -34,3 +34,12 @@ case "$os" in
|
||||||
echo "echo \"$timezone_should\" > /etc/timezone"
|
echo "echo \"$timezone_should\" > /etc/timezone"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
case "$os" in
|
||||||
|
openwrt)
|
||||||
|
cat <<EOF
|
||||||
|
uci set system.@system[0].timezone="$timezone_should"
|
||||||
|
uci commit
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
|
@ -53,7 +53,10 @@ case "$os" in
|
||||||
--file /etc/sysconfig/clock \
|
--file /etc/sysconfig/clock \
|
||||||
--delimiter '=' \
|
--delimiter '=' \
|
||||||
--value "\"$timezone\""
|
--value "\"$timezone\""
|
||||||
;;
|
;;
|
||||||
|
openwrt)
|
||||||
|
: # Uses gencode-remote
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Your operating system ($os) is currently not supported by this type (${__type##*/})." >&2
|
echo "Your operating system ($os) is currently not supported by this type (${__type##*/})." >&2
|
||||||
echo "Please contribute an implementation for it if you can." >&2
|
echo "Please contribute an implementation for it if you can." >&2
|
||||||
|
|
Loading…
Reference in a new issue