d665740935
Fixes: Bug #1158009 Change-Id: I761debfb77be5cf5204af90a013d7f4f043fdb17 Signed-off-by: Jeff Peeler <jpeeler@redhat.com>
8 lines
194 B
Bash
Executable File
8 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
setenforce 0
|
|
useradd -m @INSTANCE_USER@
|
|
echo -e '@INSTANCE_USER@\tALL=(ALL)\tNOPASSWD: ALL' >> /etc/sudoers
|
|
|
|
# Do not remove - the cloud boothook should always return success
|
|
exit 0
|