Skip to content

Instantly share code, notes, and snippets.

@goldmann
Last active August 29, 2015 13:55
Show Gist options
  • Save goldmann/8695221 to your computer and use it in GitHub Desktop.
Save goldmann/8695221 to your computer and use it in GitHub Desktop.
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