Skip to content
This repository was archived by the owner on Jul 13, 2019. It is now read-only.

Commit

Permalink
Fix boolean test
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbanVidal committed Feb 7, 2018
1 parent 570b916 commit c7e52f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 02_create_deb_lxd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ To force load bash-completion:
"
# If subuid or subgid are enabled now, need reboot no enable it
if [ $update_subXids ]; then
if ${update_subXids:-false} ; then
logger --stderr --tag lxd-install --priority notice "You'll need sub{u,g}ids for root, so that LXD can create the unprivileged containers"
logger --stderr --tag lxd-install --priority notice "To enable sub{u,g}ids for root, you need to reboot this node"
logger --stderr --tag lxd-install --priority notice "If is possible, we recommend you to only create unprivileged container"
Expand Down

0 comments on commit c7e52f4

Please sign in to comment.