From db17977b2f37b3359540ef9c0f3ffbe9861f97b7 Mon Sep 17 00:00:00 2001 From: Christian Rebischke Date: Sat, 6 May 2017 21:38:25 +0200 Subject: added new postinstall.sh, moved the controllers to postinstall.sh and added the script to vagrant.json --- http/install-chroot.sh | 15 +++++++++++---- provision/postinstall.sh | 11 +++++++++++ vagrant.json | 1 + 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 provision/postinstall.sh diff --git a/http/install-chroot.sh b/http/install-chroot.sh index 392e24f..8b5bdec 100644 --- a/http/install-chroot.sh +++ b/http/install-chroot.sh @@ -4,12 +4,8 @@ set -e set -x ln -sf /usr/share/zoneinfo/UTC /etc/localtime -hostnamectl set-hostname "archlinux" sed -i -e 's/^#\(en_US.UTF-8\)/\1/' /etc/locale.gen locale-gen -localectl set-locale "LANG=en_US.UTF-8" -localectl set-keymap "us" -localectl set-xx1-keymap "us" # setting vagrant user credentials echo -e 'vagrant\nvagrant' | passwd @@ -29,6 +25,17 @@ curl --output /home/vagrant/.ssh/authorized_keys --location https://raw.github.c chown vagrant:vagrant /home/vagrant/.ssh/authorized_keys chmod 0600 /home/vagrant/.ssh/authorized_keys +# setup unpredictable kernel names +ln -s /dev/null /etc/systemd/network/99-default.link + +cat < /etc/systemd/networkd/eth0.network +[Match] +Name=eth0 + +[Network] +DHCP=ipv4 +EOF + # enabling important services systemctl enable sshd systemctl enable systemd-networkd diff --git a/provision/postinstall.sh b/provision/postinstall.sh new file mode 100644 index 0000000..9aa2881 --- /dev/null +++ b/provision/postinstall.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e +set -x + +# setting hostname, locales, etc +hostnamectl set-hostname "archlinux" +localectl set-locale "LANG=en_US.UTF-8" +localectl set-keymap "us" +localectl set-xx1-keymap "us" +timedatectl set-ntp true diff --git a/vagrant.json b/vagrant.json index de5a632..912b18c 100644 --- a/vagrant.json +++ b/vagrant.json @@ -45,6 +45,7 @@ { "type": "shell", "scripts": [ + "provision/postinstall.sh", "provision/virtualbox.sh", "provision/cleanup.sh" ], -- cgit v1.2.3-54-g00ecf