diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2017-06-01 13:23:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2017-06-24 14:11:54 +0000 |
commit | cfb5c24f96f6fa9f45fab986e382d6aa6aef7a55 (patch) | |
tree | 453f48667920d9eb98e7d6472a251d9229971b16 /share/scripts/debconf | |
parent | Adding new container top command manpage. (diff) | |
download | compute-tools-cfb5c24f96f6fa9f45fab986e382d6aa6aef7a55.tar.xz compute-tools-cfb5c24f96f6fa9f45fab986e382d6aa6aef7a55.zip |
Renaming cnt.auto to cnt.container-server in order to split functionality of 'binding container to a specific host system' from 'starting container at system boot'.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share/scripts/debconf')
-rwxr-xr-x | share/scripts/debconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/scripts/debconf b/share/scripts/debconf index 8871fd8..2a43105 100755 --- a/share/scripts/debconf +++ b/share/scripts/debconf @@ -52,7 +52,7 @@ Parameters () shift 2 ;; - --cnt.auto) + --cnt.container-server) # ignore shift 2 ;; @@ -925,7 +925,7 @@ Commands () HOSTNAME_SHORT="$(echo ${NAME} | cut -c-8)" HOST_INTERFACE_NAME="$(echo ${NETWORK0_VETH:-veth-${HOSTNAME_SHORT}-0})" - sed -i -e "s|^cnt.auto=.*|cnt.auto=${CNT_AUTO}|" "${CONFIG}/${NAME}.conf" + sed -i -e "s|^cnt.container-server=.*|cnt.container-server=${CNT_CONTAINER_SERVER}|" "${CONFIG}/${NAME}.conf" sed -i -e "s|^cnt.network-bridge=.*|cnt.network-bridge=${HOST_INTERFACE_NAME}:${NETWORK0_BRIDGE:-br0}|g" "${CONFIG}/${NAME}.conf" sed -i -e "s|^cnt.overlay=.*|cnt.overlay=${CNT_OVERLAY}|g" "${CONFIG}/${NAME}.conf" sed -i -e "s|^bind=.*|bind=${BIND}|" "${CONFIG}/${NAME}.conf" |