diff options
author | Peter Mikus <pmikus@cisco.com> | 2019-02-23 16:27:07 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2019-05-22 09:30:11 +0000 |
commit | 04ea580e111ddf5be6101be1fbfe9fde56f1a214 (patch) | |
tree | 09247ed50f1da5e09b79dcf41a05b38afeaa4ee2 /resources/tools/testbed-setup/pxe/ks.cfg | |
parent | c6cd03e08d9429168b0e183b8dcbce991112f279 (diff) |
Ansible: Add CIMC/IPMI/COBBLER
- added tasks and handlers for CIMC, IPMI, COBBLER
- allows provisioning of servers via COBBLER
Change-Id: I64080069260dabb8a6e3b648aeff12f109d3f7c2
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources/tools/testbed-setup/pxe/ks.cfg')
-rw-r--r-- | resources/tools/testbed-setup/pxe/ks.cfg | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/resources/tools/testbed-setup/pxe/ks.cfg b/resources/tools/testbed-setup/pxe/ks.cfg deleted file mode 100644 index 7f44a89f66..0000000000 --- a/resources/tools/testbed-setup/pxe/ks.cfg +++ /dev/null @@ -1,82 +0,0 @@ -# -#Generic Kickstart template for Ubuntu -#Platform: x86 and x86-64 -# - -#System language -lang en_US - -#Language modules to install -langsupport en_US - -#System keyboard -keyboard us - -#System mouse -mouse - -#System timezone -timezone America/Los_Angeles - -#Root password -rootpw --disabled - -#Initial user (user with sudo capabilities) -user testuser --fullname "Test User" --password Csit1234 - -#Reboot after installation -reboot - -#Use text mode install -text - -#Install OS instead of upgrade -install - -#Installation media -#cdrom -#nfs --server=server.com --dir=/path/to/ubuntu/ -url --url http://10.30.51.28/download/ubuntu - -#System bootloader configuration -bootloader --location=mbr - -#Clear the Master Boot Record -zerombr yes - -#Partition clearing information -clearpart --all --initlabel - -#Basic disk partition -part /boot --fstype ext4 --size 256 --asprimary -part / --fstype ext4 --size 1 --grow --asprimary -part swap --size 1024 - -#Advanced partition -#part /boot --fstype=ext4 --size=500 --asprimary -#part pv.aQcByA-UM0N-siuB-Y96L-rmd3-n6vz-NMo8Vr --grow --size=1 -#volgroup vg_mygroup --pesize=4096 pv.aQcByA-UM0N-siuB-Y96L-rmd3-n6vz-NMo8Vr -#logvol / --fstype=ext4 --name=lv_root --vgname=vg_mygroup --grow --size=10240 --maxsize=20480 -#logvol swap --name=lv_swap --vgname=vg_mygroup --grow --size=1024 --maxsize=8192 - -#System authorization infomation -auth --useshadow --enablemd5 - -#Network information -network --bootproto=dhcp - -#Firewall configuration -firewall --disabled --ssh - -#Do not configure the X Window System -skipx - -### - -preseed live-installer/net-image string http://10.30.51.28/download/ubuntu/install/filesystem.squashfs -preseed user-setup/allow-password-weak boolean true - - -%packages -openssh-server -python2.7 |