Last active
August 25, 2022 10:06
Revisions
-
robertstarmer revised this gist
Nov 6, 2013 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -81,8 +81,7 @@ d-i grub-installer/only_debian boolean true d-i finish-install/reboot_in_progress note d-i pkgsel/update-policy select none d-i pkgsel/include string openssh-server vim vlan lvm2 ntp puppet d-i preseed/early_command string wget -O /dev/null http://$http_server:$http_port/cblr/svc/op/trig/mode/pre/system/$system_name d-i preseed/late_command string in-target puppet agent --test --waitforcert 0 || true;\ /sbin/lvremove -f cinder-volumes/hack; rmdir /tmp/hack ; \ sed -e 's/START=no/START=yes/' -i /target/etc/default/puppet ;\ -
robertstarmer revised this gist
Nov 6, 2013 . 1 changed file with 11 additions and 22 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,7 @@ d-i mirror/country string manual d-i mirror/http/hostname string 192.168.26.170 d-i mirror/http/directory string /ubuntu d-i partman/early_command string vgs --separator=: --noheadings | cut -f1 -d: |while read vg ; do vgchange -an $vg ; done ; pvs --separator=: --noheadings | cut -f1 -d: | while read pv ; do pvremove -ff -y $pv ; done d-i partman-auto/disk string /dev/sda d-i partman/alignment string cylinder d-i partman-md/device_remove_md boolean true @@ -64,8 +62,7 @@ openstack :: \ in_vg{ cinder-volumes } \ lv_name{ hack } \ . d-i partman/choose_partition select Finish partitioning and write changes to disk d-i partman-md/confirm_nooverwrite boolean true d-i partman-md/confirm boolean true d-i partman-lvm/confirm_nooverwrite boolean true @@ -86,24 +83,20 @@ d-i pkgsel/update-policy select none d-i pkgsel/include string openssh-server vim vlan lvm2 ntp puppet d-i preseed/early_command string wget -O /dev/null http://$http_server:$http_por t/cblr/svc/op/trig/mode/pre/system/$system_name d-i preseed/late_command string in-target puppet agent --test --waitforcert 0 || true;\ /sbin/lvremove -f cinder-volumes/hack; rmdir /tmp/hack ; \ sed -e 's/START=no/START=yes/' -i /target/etc/default/puppet ;\ sed -e "/logdir/ a pluginsync=true" -i /target/etc/puppet/puppet.conf ; \ sed -e "/logdir/ a server=$http_server" -i /target/etc/puppet/puppet.conf ; \ echo -e "server $http_server iburst" > /target/etc/ntp.conf ;\ echo "8021q" >> /target/etc/modules ; \ echo "no bonding configured" ; \ echo "net.ipv6.conf.default.autoconf=0" >> /target/etc/sysctl.conf ; \ echo "net.ipv6.conf.default.accept_ra=0" >> /target/etc/sysctl.conf ; \ echo "net.ipv6.conf.all.autoconf=0" >> /target/etc/sysctl.conf ; \ echo "net.ipv6.conf.all.accept_ra=0" >> /target/etc/sysctl.conf ; \ ifconf="`tail +11 </etc/network/interfaces`" ; \ echo -e "# This file describes the network interfaces available on your system\n\ # and how to activate them. For more information, see interfaces(5).\n\ \n\ # The loopback network interface\n\ @@ -129,15 +122,11 @@ iface eth3 inet static\n\ address 0.0.0.0\n\ netmask 255.255.255.255\n\ \n\ " > /target/etc/network/interfaces ; \ sed -e "s/^[ ]*//" -i /target/etc/network/interfaces ; \ if [ "`debconf-get netcfg/no_default_route`" = "true" ] ; then in-target sed -i.bak -e '/^\tgateway /d' /etc/network/interfaces; fi ;\ wget -O /dev/null http://$http_server:$http_port/cblr/svc/op/nopxe/system/$system_name ; \ wget -O /dev/null http://$http_server:$http_port/cblr/svc/op/trig/mode/post/system/$system_name ; \ mkdir -p /root/.ssh ;\ cat > /root/.ssh/authorized_keys <<EOF ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeS9zlMeXeivRadLQPLkKevr4wgwckKWr7/M2duvAwNNUmksQTwdfgyA9olciY4LAtn1CRFt4eU7gXOkbP9c0iUTvn/R7Rsva29W/NyXAKIF56PEEZ77FHlXyifuOgRiaRHZMz7sbMFsiXhgwwOl/fsA8pCGOo7VZ5Y088Bwcec0xpm8doxgTZoHtBGcskYX3OiAcYr/dJqzvJmtPwTUtjpWlk9pTSrnedxgKh9XKndKEE3ewjsTAmtpAkdw5gdaUCmJMM4U+o86QIxTNy67ITjoFnsNlspxDiTlrPGn8D6Xt4VLWvus8WbeR5Rv9vz+WPHJT0nMnrsG0hnVCDLe2p root@control01 -
robertstarmer created this gist
Nov 6, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,146 @@ d-i mirror/country string manual d-i mirror/http/hostname string 192.168.26.170 d-i mirror/http/directory string /ubuntu d-i partman/early_command string vgs --separator=: --noheadings | cut -f1 -d: | while read vg ; do vgchange -an $vg ; done ; pvs --separator=: --noheadings | cu t -f1 -d: | while read pv ; do pvremove -ff -y $pv ; done d-i partman-auto/disk string /dev/sda d-i partman/alignment string cylinder d-i partman-md/device_remove_md boolean true d-i partman-md/confirm boolean true d-i partman-lvm/device_remove_lvm boolean true d-i partman-lvm/confirm boolean true d-i partman/choose_partition select Finish d-i partman/confirm_write_new_label boolean true d-i partman-auto/method string lvm d-i partman-basicfilesystems/choose_label string gpt d-i partman-basicfilesystems/default_label string gpt d-i partman-partitioning/choose_label string gpt d-i partman-partitioning/default_label string gpt d-i partman/choose_label string gpt d-i partman/default_label string gpt d-i partman-auto/choose_recipe select openstack d-i partman-auto/expert_recipe string \ openstack :: \ 1 1 1 free \ $gptonly{ } \ $primary{ } \ $bios_boot{ } \ method{ biosgrub } \ . \ 200 2 200 ext3 \ $gptonly{ } \ $primary{ } \ device{ /dev/sda } \ method{ format } format{ } \ use_filesystem{ } filesystem{ ext3 } \ mountpoint{ /boot } \ . \ 10 10 10 ext4 \ $defaultignore{ } \ $gptonly{ } \ $primary{ } \ method{ lvm } \ device{ /dev/sda } \ vg_name{ cinder-volumes } \ . \ 1024 10000 4098 linux-swap \ $lvmok{ } \ method{ swap } format{ } \ in_vg{ cinder-volumes } \ lv_name{ swap } \ . \ 65536 500 65536 ext4 \ $lvmok{ } \ method{ format } format{ } \ use_filesystem{ } filesystem{ ext4 } \ mountpoint{ / } \ in_vg{ cinder-volumes } \ lv_name{ slash } \ . \ 1024 20000 1024 ext4 \ $lvmok{ } \ mountpoint{ /tmp/hack } \ in_vg{ cinder-volumes } \ lv_name{ hack } \ . d-i partman/choose_partition select Finish partitioning and write changes to disk d-i partman-md/confirm_nooverwrite boolean true d-i partman-md/confirm boolean true d-i partman-lvm/confirm_nooverwrite boolean true d-i partman-lvm/confirm boolean true d-i partman-partitioning/confirm_write_new_label boolean true d-i partman/choose_partition select Finish d-i partman/confirm_nooverwrite boolean true d-i partman/confirm boolean true d-i clock-setup/utc boolean true d-i time/zone string UTC d-i passwd/user-fullname string Admin Adminson d-i passwd/username string localadmin d-i passwd/user-password-crypted password $6$rounds=40831$OrEBkKUc72KClBWC$fBphskFcmeROpfE8M5y1c09pa1657DmbsO41leBHb5ZOPKgi.lUTGyTuyTQGFZQKozoD0fWWxHx.djqzlnBQW0 d-i user-setup/encrypt-home boolean false d-i grub-installer/only_debian boolean true d-i finish-install/reboot_in_progress note d-i pkgsel/update-policy select none d-i pkgsel/include string openssh-server vim vlan lvm2 ntp puppet d-i preseed/early_command string wget -O /dev/null http://$http_server:$http_por t/cblr/svc/op/trig/mode/pre/system/$system_name d-i preseed/late_command string in-target puppet agent --test --waitforcert 0 || true;\ /sbin/lvremove -f cinder-volumes/hack; rmdir /tmp/hack ; \sed -e 's/START=no/STA RT=yes/' -i /target/etc/default/puppet ;\ sed -e "/logdir/ a pluginsync=true" -i /target/etc/puppet/puppet.conf ; \ sed -e "/logdir/ a server=$http_server" -i /target/etc/puppet/ puppet.conf ; \ echo -e "server $http_server iburst" > /target/etc/ntp.conf ; \ echo "8021q" >> /target/etc/modules ; \ echo "no bonding configured" ; \ echo "net.ipv6.conf.default.autoconf=0" >> /target/etc/sysctl.conf ; \ echo "net.ipv6.conf.default.accept_ra=0" >> /target/etc/sysctl.conf ; \ echo "net.ipv6.conf.all.autoconf=0" >> /target/etc/sysctl.conf ; \ echo "net.ipv6.conf.all.accept_ra=0" >> /target/etc/sysctl.conf ; \ ifconf="`tail +11 </etc/network/interfaces`" ; \ echo -e "# This file describes the network interfaces available on your system\n \ # and how to activate them. For more information, see interfaces(5).\n\ \n\ # The loopback network interface\n\ auto lo\n\ iface lo inet loopback\n\ \n\ auto eth0\n\ iface eth0 inet static\n\ $ifconf\n\ \n\ auto eth1\n\ iface eth1 inet static\n\ address 0.0.0.0\n\ netmask 255.255.255.255\n\ \n\ auto eth2\n\ iface eth2 inet static\n\ address 0.0.0.0\n\ netmask 255.255.255.255\n\ \n\ auto eth3\n\ iface eth3 inet static\n\ address 0.0.0.0\n\ netmask 255.255.255.255\n\ \n\ " > /target/etc/network/interfaces ; \ sed -e "s/^[ ]*//" -i /target/etc/network/interfaces ; \ if [ "`debconf-get netcfg/no_default_route`" = "true" ] ; then in-target sed -i. bak -e '/^\tgateway /d' /etc/network/interfaces; fi ;\ wget -O /dev/null http://$http_server:$http_port/cblr/svc/op/nopxe/system/$syste m_name ; \ wget -O /dev/null http://$http_server:$http_port/cblr/svc/op/trig/mode/post/syst em/$system_name ; \ mkdir -p /root/.ssh ;\ cat > /root/.ssh/authorized_keys <<EOF ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeS9zlMeXeivRadLQPLkKevr4wgwckKWr7/M2duvAwNNUmksQTwdfgyA9olciY4LAtn1CRFt4eU7gXOkbP9c0iUTvn/R7Rsva29W/NyXAKIF56PEEZ77FHlXyifuOgRiaRHZMz7sbMFsiXhgwwOl/fsA8pCGOo7VZ5Y088Bwcec0xpm8doxgTZoHtBGcskYX3OiAcYr/dJqzvJmtPwTUtjpWlk9pTSrnedxgKh9XKndKEE3ewjsTAmtpAkdw5gdaUCmJMM4U+o86QIxTNy67ITjoFnsNlspxDiTlrPGn8D6Xt4VLWvus8WbeR5Rv9vz+WPHJT0nMnrsG0hnVCDLe2p root@control01 EOF ;\ chmod 600 /root/.ssh/authorized_keys ;\ true