diff options
Diffstat (limited to 'lib/container/start')
-rwxr-xr-x | lib/container/start | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/container/start b/lib/container/start index 41e8f72..5191ae2 100755 --- a/lib/container/start +++ b/lib/container/start @@ -312,6 +312,18 @@ EOF ;; esac + PRIVATE_USERS="$(awk -F= '/^private-users=/ { print $2 }' ${CONFIG}/${NAME}.conf || echo no)" + + case "${PRIVATE_USERS}" in + yes) + PRIVATE_USERS="--private-users=yes" + ;; + + *) + PRIVATE_USERS="--private-users=no" + ;; + esac + REGISTER="$(awk -F= '/^register=/ { print $2 }' ${CONFIG}/${NAME}.conf || echo yes)" case "${REGISTER}" in |