forked from clalancette/oz
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Chris Lalancette <[email protected]>
- Loading branch information
1 parent
bf58aec
commit 02652ef
Showing
2 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
text | ||
|
||
auth --enableshadow --passalgo=sha512 | ||
|
||
# Use CDROM installation media | ||
cdrom | ||
# Run the Setup Agent on first boot | ||
ignoredisk --only-use=vda | ||
# Keyboard layouts | ||
keyboard --vckeymap=us --xlayouts='us' | ||
# System language | ||
lang en_US.UTF-8 | ||
|
||
# Network information | ||
network --bootproto=dhcp --device=eth0 --ipv6=auto --activate | ||
network --hostname=localhost.localdomain | ||
# Root password | ||
rootpw %ROOTPW% | ||
# System timezone | ||
timezone America/New_York --isUtc | ||
# System bootloader configuration | ||
bootloader --location=mbr --boot-drive=vda | ||
autopart --type=lvm | ||
# Partition clearing information | ||
clearpart --none --initlabel | ||
|
||
reboot | ||
|
||
%packages | ||
@core | ||
|
||
%end |