Skip to content

Instantly share code, notes, and snippets.

@jruels
Created August 18, 2014 17:38
Show Gist options
  • Save jruels/f03a91572b4205d2f69c to your computer and use it in GitHub Desktop.
Save jruels/f03a91572b4205d2f69c to your computer and use it in GitHub Desktop.
trusty preseed
root@511652-razor-dfw:/opt/razor-server# curl http://172.16.0.185:8080/svc/file/2/preseed
17:37:35,968 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.001000s) CREATE TABLE IF NOT EXISTS "schema_info" ("version" integer DEFAULT 0 NOT NULL)
17:37:35,969 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.000000s) SELECT * FROM "schema_info" LIMIT 1
17:37:35,971 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.000000s) SELECT 1 AS "one" FROM "schema_info" LIMIT 1
17:37:35,973 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.001000s) SELECT count(*) AS "count" FROM "schema_info" LIMIT 1
17:37:35,975 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.000000s) SELECT "version" FROM "schema_info" LIMIT 1
17:37:35,976 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.000000s) SELECT "version" FROM "schema_info" LIMIT 1
17:37:35,977 INFO [razor.web.api] (http-/0.0.0.0:8080-2) request from 2 for preseed
17:37:35,979 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.001000s) SELECT * FROM "nodes" WHERE "id" = '2'
17:37:35,983 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.001000s) SELECT * FROM "policies" WHERE ("id" = 5) ORDER BY "rule_number" LIMIT 1
17:37:35,989 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.000000s) SELECT * FROM "repos" WHERE "id" = 1
17:37:35,993 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.001000s) BEGIN
17:37:35,995 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.001000s) INSERT INTO "node_log_entries" ("node_id", "entry") VALUES (2, '{"event":"get_file","template":"preseed","url":"http://172.16.0.185:8080/svc/file/2/preseed","severity":"info"}') RETURNING *
17:37:36,001 INFO [razor.sequel] (http-/0.0.0.0:8080-2) (0.001000s) COMMIT
17:37:36,016 INFO [razor.web.api] (http-/0.0.0.0:8080-2) repo_file("install/filesystem.squashfs")
17:37:36,016 INFO [razor-server] (http-/0.0.0.0:8080-2) find_file_ignoring_case(/var/lib/razor/repo-store/ubuntu-trusty/install/filesystem.squashfs)
d-i console-setup/ask_detect boolean false
d-i keyboard-configuration/layoutcode string us
d-i netcfg/choose_interface select auto
d-i netcfg/get_hostname string node2-dfw.lab
d-i netcfg/get_domain string lab
d-i netcfg/no_default_route boolean true
# This is the only line that differs from the `ubuntu` preseed file.
d-i live-installer/net-image string /var/lib/razor/repo-store/ubuntu-trusty/install/filesystem.squashfs
d-i mirror/protocol string http
d-i mirror/country string manual
d-i mirror/http/hostname string 172.16.0.185:8080
d-i mirror/http/directory string /svc/repo/ubuntu-trusty/
d-i clock-setup/utc boolean true
d-i time/zone string UTC
d-i clock-setup/ntp boolean true
d-i clock-setup/ntp-server string ntp.ubuntu.com
d-i partman-auto/disk string /dev/sda
d-i partman-auto/method string lvm
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-auto-lvm/guided_size string max
d-i partman-auto/choose_recipe select atomic
d-i partman-auto/purge_lvm_from_device boolean true
d-i partman/default_filesystem string ext4
d-i partman-auto/init_automatically_partition select biggest_free
d-i partman-lvm/confirm boolean true
d-i partman-lvm/confirm_nooverwrite boolean true
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
d-i partman-md/confirm boolean true
d-i passwd/root-login boolean true
d-i passwd/make-user boolean true
d-i passwd/root-password password razor
d-i passwd/root-password-again password razor
d-i passwd/user-fullname string Ubuntu User
d-i passwd/username string ubuntu
d-i passwd/user-password password insecure
d-i passwd/user-password-again password insecure
d-i user-setup/allow-password-weak boolean true
d-i apt-setup/restricted boolean true
d-i pkgsel/include string curl openssh-server
d-i grub-installer/only_debian boolean true
d-i grub-installer/with_other_os boolean true
d-i finish-install/reboot_in_progress note
# Uncomment this for `nomodeset`.
# d-i debian-installer/add-kernel-opts string nomodeset
# Our callbacks
d-i preseed/early_command string wget http://172.16.0.185:8080/svc/log/2?msg=preseed+start&severity=info
17:37:36,023 INFO [razor.web.log] (http-/0.0.0.0:8080-2) 172.16.0.185 - - [18/Aug/2014 17:37:36] "GET /svc/file/2/preseed "d-i preseed/late_command string wget http://172.16.0.185:8080/svc/log/2?msg=preseed+end&severity=info; \
wget http://172.16.0.185:8080/svc/file/2/os_boot -O /target/usr/local/bin/razor_postinstall.sh; \
200 2735 0.0610
sed -i '/exit 0/d' /target/etc/rc.local; \
echo bash /usr/local/bin/razor_postinstall.sh >> /target/etc/rc.local; \
echo exit 0 >> /target/etc/rc.local; \
chmod +x /target/usr/local/bin/razor_postinstall.sh; \
wget http://172.16.0.185:8080/svc/stage-done/2?name=preseed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment