Commit 1689c7cf by Jonathan Calmels

lxc-oci: read configuration from oci.common.conf if available

parent bbb8e190
...@@ -21,6 +21,7 @@ templatesconfig_DATA = \ ...@@ -21,6 +21,7 @@ templatesconfig_DATA = \
gentoo.moresecure.conf \ gentoo.moresecure.conf \
gentoo.userns.conf \ gentoo.userns.conf \
nesting.conf \ nesting.conf \
oci.common.conf \
opensuse.common.conf \ opensuse.common.conf \
opensuse.userns.conf \ opensuse.userns.conf \
oracle.common.conf \ oracle.common.conf \
......
# Uncomment the following if you want to use DHCP for OCI containers
#lxc.hook.start-host = @LXCHOOKDIR@/dhclient
#lxc.hook.stop = @LXCHOOKDIR@/dhclient
...@@ -737,6 +737,7 @@ AC_CONFIG_FILES([ ...@@ -737,6 +737,7 @@ AC_CONFIG_FILES([
config/templates/gentoo.moresecure.conf config/templates/gentoo.moresecure.conf
config/templates/gentoo.userns.conf config/templates/gentoo.userns.conf
config/templates/nesting.conf config/templates/nesting.conf
config/templates/oci.common.conf
config/templates/opensuse.common.conf config/templates/opensuse.common.conf
config/templates/opensuse.userns.conf config/templates/opensuse.userns.conf
config/templates/oracle.common.conf config/templates/oracle.common.conf
......
...@@ -313,6 +313,10 @@ if [ -n "$LXC_MAPPED_UID" ] && [ "$LXC_MAPPED_UID" != "-1" ] && [ -e "${LXC_TEMP ...@@ -313,6 +313,10 @@ if [ -n "$LXC_MAPPED_UID" ] && [ "$LXC_MAPPED_UID" != "-1" ] && [ -e "${LXC_TEMP
echo "lxc.include = ${LXC_TEMPLATE_CONFIG}/userns.conf" >> "${LXC_CONF_FILE}" echo "lxc.include = ${LXC_TEMPLATE_CONFIG}/userns.conf" >> "${LXC_CONF_FILE}"
fi fi
if [ -e "${LXC_TEMPLATE_CONFIG}/oci.common.conf" ]; then
echo "lxc.include = ${LXC_TEMPLATE_CONFIG}/oci.common.conf" >> "${LXC_CONF_FILE}"
fi
echo "lxc.uts.name = ${LXC_NAME}" >> "${LXC_CONF_FILE}" echo "lxc.uts.name = ${LXC_NAME}" >> "${LXC_CONF_FILE}"
# set the hostname # set the hostname
cat <<EOF > ${LXC_ROOTFS}/etc/hostname cat <<EOF > ${LXC_ROOTFS}/etc/hostname
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment