Merge pull request #202 from mariusvw/hotfix/zoneinfo-path-1

Correct capital E in zonepath to UTC
This commit is contained in:
Christer Edwards
2020-04-14 08:43:07 -06:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ bastille_sharedir=/usr/local/share/bastille ## default
bastille_bootstrap_archives="base" ## default: "base" bastille_bootstrap_archives="base" ## default: "base"
## default timezone ## default timezone
bastille_tzdata="etc/UTC" ## default: "etc/UTC" bastille_tzdata="Etc/UTC" ## default: "Etc/UTC"
## default jail resolv.conf ## default jail resolv.conf
bastille_resolv_conf="/etc/resolv.conf" ## default: "/etc/resolv.conf" bastille_resolv_conf="/etc/resolv.conf" ## default: "/etc/resolv.conf"
+1 -1
View File
@@ -355,7 +355,7 @@ create_jail() {
cp -L "${bastille_resolv_conf}" "${bastille_jail_resolv_conf}" cp -L "${bastille_resolv_conf}" "${bastille_jail_resolv_conf}"
fi fi
## TZ: configurable (default: etc/UTC) ## TZ: configurable (default: Etc/UTC)
ln -s "/usr/share/zoneinfo/${bastille_tzdata}" etc/localtime ln -s "/usr/share/zoneinfo/${bastille_tzdata}" etc/localtime
} }