Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BENTO-94 fix for authconfig --disablefingerprint in kickstart #113

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packer/http/centos-6.4/ks.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ keyboard us
network --bootproto=dhcp
rootpw --iscrypted $1$damlkd,f$UC/u5pUts5QiU3ow.CSso/
firewall --disabled
authconfig --enableshadow --passalgo=sha512
selinux --permissive
timezone UTC
bootloader --location=mbr
Expand All @@ -14,7 +13,7 @@ skipx
zerombr
clearpart --all --initlabel
autopart
auth --useshadow --enablemd5
auth --disablefingerprint --enableshadow --passalgo=sha512 --kickstart
firstboot --disabled
reboot

Expand Down
5 changes: 2 additions & 3 deletions packer/scripts/centos/ks.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@ keyboard us
network --bootproto=dhcp
rootpw --iscrypted $1$damlkd,f$UC/u5pUts5QiU3ow.CSso/
firewall --disabled
authconfig --enableshadow --passalgo=sha512
selinux --permissive
timezone UTC
bootloader --location=mbr
text
skipx
zerombr
clearpart --all --initlabel
autopart
auth --useshadow --enablemd5
autopart
auth --disablefingerprint --enableshadow --passalgo=sha512 --kickstart
firstboot --disabled
reboot

Expand Down