suse support for __timezone
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
This commit is contained in:
parent
004e90e9b9
commit
17504975a6
1 changed files with 9 additions and 4 deletions
|
@ -27,13 +27,18 @@ os=$(cat "$__global/explorer/os")
|
||||||
|
|
||||||
case "$os" in
|
case "$os" in
|
||||||
archlinux|debian|ubuntu)
|
archlinux|debian|ubuntu)
|
||||||
__package tzdata --state present
|
package=tzdata
|
||||||
require="__package/tzdata" __link /etc/localtime \
|
;;
|
||||||
--source "/usr/share/zoneinfo/${timezone}" \
|
suse)
|
||||||
--type symbolic
|
package=timezone
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Unsupported OS $os" >&2
|
echo "Unsupported OS $os" >&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
__package "$package" --state present
|
||||||
|
require="__package/$package" __link /etc/localtime \
|
||||||
|
--source "/usr/share/zoneinfo/${timezone}" \
|
||||||
|
--type symbolic
|
||||||
|
|
Loading…
Reference in a new issue