Add support for CoreOS to __timezone type (#587)

This commit is contained in:
lubo 2017-10-19 19:58:34 +02:00 committed by Darko Poljak
parent 5c4cda589c
commit 36302f7541
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ if [ "$timezone_is" = "$timezone_should" ]; then
fi fi
case "$os" in case "$os" in
ubuntu|debian|devuan) ubuntu|debian|devuan|coreos)
echo "echo \"$timezone_should\" > /etc/timezone" echo "echo \"$timezone_should\" > /etc/timezone"
;; ;;
esac esac

View File

@ -34,7 +34,7 @@ case "$os" in
__package timezone __package timezone
export require="__package/timezone" export require="__package/timezone"
;; ;;
freebsd|netbsd) freebsd|netbsd|coreos)
# whitelist # whitelist
: :
;; ;;