X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Ftestbed-setup%2Fpxe%2Fks.cfg;fp=resources%2Ftools%2Ftestbed-setup%2Fpxe%2Fks.cfg;h=a027b950ab8dee32ac10e78a762a06942c64f3c4;hb=3a14297dca576dd7e2c9f09d84bf0f5cf58c1938;hp=0000000000000000000000000000000000000000;hpb=8bb12f5b902cf42c623172c562b4f2752489bc13;p=csit.git diff --git a/resources/tools/testbed-setup/pxe/ks.cfg b/resources/tools/testbed-setup/pxe/ks.cfg new file mode 100644 index 0000000000..a027b950ab --- /dev/null +++ b/resources/tools/testbed-setup/pxe/ks.cfg @@ -0,0 +1,82 @@ +# +#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 Cisco1234 + +#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