mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-03 00:56:22 +00:00
Set timezone for new container if not previously defined.
If the container does not already contain an /etc/localtime timezone definition, then copy a definition from the host to the container. This is often a symlink to an appropriate system timezone definition files and is presumed to exist in Signed-off-by: Michael H. Warfield <mhw@WittsEnd.com> Acked-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
parent
dfb2291eca
commit
f5067ecbcc
@ -203,6 +203,13 @@ configure_centos()
|
||||
)
|
||||
fi
|
||||
|
||||
# Set default localtime to the host localtime if not set...
|
||||
if [ -e /etc/localtime -a ! -e ${rootfs_path}/etc/localtime ]
|
||||
then
|
||||
# if /etc/localtime is a symlink, this should preserve it.
|
||||
cp -a /etc/localtime ${rootfs_path}/etc/localtime
|
||||
fi
|
||||
|
||||
# Deal with some dain bramage in the /etc/init.d/halt script.
|
||||
# Trim it and make it our own and link it in before the default
|
||||
# halt script so we can intercept it. This also preventions package
|
||||
|
@ -176,6 +176,13 @@ configure_fedora()
|
||||
)
|
||||
fi
|
||||
|
||||
# Set default localtime to the host localtime if not set...
|
||||
if [ -e /etc/localtime -a ! -e ${rootfs_path}/etc/localtime ]
|
||||
then
|
||||
# if /etc/localtime is a symlink, this should preserve it.
|
||||
cp -a /etc/localtime ${rootfs_path}/etc/localtime
|
||||
fi
|
||||
|
||||
# Deal with some dain bramage in the /etc/init.d/halt script.
|
||||
# Trim it and make it our own and link it in before the default
|
||||
# halt script so we can intercept it. This also preventions package
|
||||
|
Loading…
Reference in New Issue
Block a user