Fix variable name

This commit is contained in:
phahulin 2017-07-11 14:20:06 +03:00 committed by GitHub
parent e697b3cf86
commit 8bb5ae3d35
1 changed files with 5 additions and 1 deletions

View File

@ -51,9 +51,13 @@ prepare_homedir() {
add_user_to_docker_group() {
# based on https://askubuntu.com/questions/477551/how-can-i-use-docker-without-sudo
echo "=====> add_user_to_docker_group"
sudo groupadd docker
sudo gpasswd -a "${ADMIN_USER}" docker
sudo gpasswd -a "${ADMIN_USERNAME}" docker
newgrp docker
echo "===== Groups: "
groups
echo "<===== add_user_to_docker_group"
}
install_ntpd() {