Last active
August 29, 2015 13:55
-
-
Save goldmann/8695221 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
guestfish -a Fedora-x86_64-20-20131211.1-sda.qcow2 -i --selinux <<_EOF_ | |
# Load selinux policy | |
sh "/usr/sbin/load_policy -i" | |
# Create fedora user | |
sh "useradd -m fedora" | |
# Reset the fedora user password | |
sh "echo 'fedora:fedora' | chpasswd" | |
# Give the fedora users administrative rights | |
sh "echo 'fedora ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/fedora" | |
_EOF_ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment