add a new user stack with sudoers privileges (start of using sudo again)
diff --git a/build_nfs.sh b/build_nfs.sh
index 89d8141..fbfecfc 100755
--- a/build_nfs.sh
+++ b/build_nfs.sh
@@ -51,5 +51,11 @@
 fi
 
 # set root password to password
-echo root:password | chroot $DEST chpasswd
+echo root:pass | chroot $DEST chpasswd
 
+# create a stack user
+chroot $DEST useradd stack -s /bin/bash -d /opt
+echo stack:pass | chroot $DEST chpasswd
+chroot $DEST chown -R stack /opt
+
+echo "stack ALL=(ALL) NOPASSWD: ALL" >> $DEST/etc/sudoers