diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2018-07-24 15:16:08 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2018-07-27 02:49:12 +0000 |
commit | e3ffb010e83313d2f1686bc5a060a95eb4e160e6 (patch) | |
tree | 47a8db1ded8972278fea6b0d783d5de3f713fd7d /share/scripts/debconf | |
parent | Adding reference to /var/cache/container-tools to container manpage. (diff) | |
download | compute-tools-e3ffb010e83313d2f1686bc5a060a95eb4e160e6.tar.xz compute-tools-e3ffb010e83313d2f1686bc5a060a95eb4e160e6.zip |
Adding support for multiple container and host commands in debconf container create script.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share/scripts/debconf')
-rwxr-xr-x | share/scripts/debconf | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/share/scripts/debconf b/share/scripts/debconf index 77a974a..a05b067 100755 --- a/share/scripts/debconf +++ b/share/scripts/debconf @@ -740,6 +740,18 @@ EOF rm -f "${DIRECTORY}/.container-command" fi + + for NUMBER in $(seq 1 ${CONTAINER_COMMAND_NUMBER}) + do + eval COMMAND="$`echo CONTAINER_COMMAND${NUMBER}`" + + echo "${COMMAND}" > "${DIRECTORY}/.container-command" + + chmod 0755 "${DIRECTORY}/.container-command" + Chroot "${DIRECTORY}" "sh /.container-command" + + rm -f "${DIRECTORY}/.container-command" + done } Configure_network () @@ -988,6 +1000,19 @@ Commands () rm -f "${DIRECTORY}/.host-command" fi + for NUMBER in $(seq 1 ${HOST_COMMAND_NUMBER}) + do + eval COMMAND="$`echo HOST_COMMAND${NUMBER}`" + + echo "${COMMAND}" > "${DIRECTORY}/.host-command" + + cd "${DIRECTORY}" + sh "${DIRECTORY}/.host-command" + cd "${OLDPWD}" + + rm -f "${DIRECTORY}/.host-command" + done + # Show root password in case its automatically set case "${ROOT_RANDOM_PASSWORD}" in true) |