diff options
author | Christian Rebischke <Chris.Rebischke@posteo.de> | 2017-05-06 03:47:50 +0200 |
---|---|---|
committer | Christian Rebischke <Chris.Rebischke@posteo.de> | 2017-05-06 03:47:50 +0200 |
commit | bcf2d367fe50ab0e8911f8dd40e9a432b81a3be6 (patch) | |
tree | 52970a99f47802474c1c5e4b5a17bbd8a5b54d1d | |
parent | 5eab5731066846c624909f48e8629f4550173b29 (diff) | |
download | arch-boxes32-bcf2d367fe50ab0e8911f8dd40e9a432b81a3be6.tar.xz |
provisioning scripts
-rw-r--r-- | provision/cleanup.sh | 6 | ||||
-rw-r--r-- | provision/virtualbox.sh | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/provision/cleanup.sh b/provision/cleanup.sh new file mode 100644 index 0000000..b8a2336 --- /dev/null +++ b/provision/cleanup.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +set -e +set -x + +yes | sudo pacman -Scc diff --git a/provision/virtualbox.sh b/provision/virtualbox.sh new file mode 100644 index 0000000..b36916b --- /dev/null +++ b/provision/virtualbox.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +set -e +set -x + +sudo pacman -S --noconfirm linux-headers +sudo pacman -S --noconfirm virtualbox-guest-utils-nox +sudo systemctl enable vboxservice |