summaryrefslogtreecommitdiff
path: root/puppet/bin/provision
blob: 16f102f1e1ea8e7a0ea11815dbedfc41b24c2c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
#
# Simple shell provisioner for Vagrant instances.
#

# Parameters
DIRNAME="`dirname $0`"

# Load dependencies
source $DIRNAME/dependencies

# Ensure the system is updated.
$SUDO apt-get update && DEBIAN_FRONTEND=noninteractive $SUDO apt-get dist-upgrade -y && $SUDO apt-get autoremove -y && $SUDO apt-get clean

# Ensure additional dependencies are installed.
for package in usbutils; do
  provision_package $package
done

# Storeconfigs support
for package in ruby-sqlite3 ruby-activerecord ruby-activerecord-deprecated-finders; do
  provision_package $package
done

# Link hiera configuration if needed.
if [ ! -h "/etc/puppet/hiera.yaml" ]; then
  $SUDO rm -f /etc/puppet/hiera.yaml
  $SUDO ln -s $DIRNAME/../hiera/hiera.yaml /etc/puppet/hiera.yaml
fi

# Link puppet configuration if needed.
if [ ! -h "/etc/puppet/puppet.conf" ]; then
  $SUDO rm -f /etc/puppet/puppet.conf
  $SUDO ln -s $DIRNAME/../puppet.conf /etc/puppet/puppet.conf
fi