From a0cdf15c5e65160cf2e56b1658cab11146109a11 Mon Sep 17 00:00:00 2001 From: Kim Hagen Date: Thu, 25 Oct 2018 14:15:34 +0200 Subject: Add build command for AWS --- Makefile | 14 ++++++++++++++ tools/cloud-init/AWS/90_dpkg.cfg | 2 ++ tools/cloud-init/AWS/config.boot.default | 30 ++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 tools/cloud-init/AWS/90_dpkg.cfg create mode 100644 tools/cloud-init/AWS/config.boot.default diff --git a/Makefile b/Makefile index f4a9ef29..b0904772 100644 --- a/Makefile +++ b/Makefile @@ -100,6 +100,20 @@ GCE: clean prepare cd $(build_dir) @../scripts/build-GCE-image +.PHONY: AWS +.ONESHELL: +AWS: clean prepare + @set -e + @echo "It's not like I'm building this specially for you or anything!" + mkdir -p build/config/includes.chroot/etc/cloud/cloud.cfg.d + cp tools/cloud-init/AWS/90_dpkg.cfg build/config/includes.chroot/etc/cloud/cloud.cfg.d/ + cp tools/cloud-init/cloud-init.list.chroot build/config/package-lists/ + cp -f tools/cloud-init/AWS/config.boot.default build/config/includes.chroot/opt/vyatta/etc/ + cd $(build_dir) + lb build 2>&1 | tee build.log + cd .. + @scripts/copy-image + .PHONY: clean .ONESHELL: clean: diff --git a/tools/cloud-init/AWS/90_dpkg.cfg b/tools/cloud-init/AWS/90_dpkg.cfg new file mode 100644 index 00000000..1bf7d288 --- /dev/null +++ b/tools/cloud-init/AWS/90_dpkg.cfg @@ -0,0 +1,2 @@ +# to update this file, run dpkg-reconfigure cloud-init +datasource_list: [ Ec2 ] diff --git a/tools/cloud-init/AWS/config.boot.default b/tools/cloud-init/AWS/config.boot.default new file mode 100644 index 00000000..18f6ef09 --- /dev/null +++ b/tools/cloud-init/AWS/config.boot.default @@ -0,0 +1,30 @@ +system { + syslog { + global { + facility all { + level info + } + facility protocols { + level debug + } + } + } + ntp { + server "0.pool.ntp.org" + server "1.pool.ntp.org" + server "2.pool.ntp.org" + } + console { + device ttyS0 { + speed 9600 + } + } + config-management { + commit-revisions 100 + } +} + +interfaces { + loopback lo { + } +} -- cgit v1.2.3