diff options
Diffstat (limited to 'bin/provision')
| -rwxr-xr-x | bin/provision | 30 | 
1 files changed, 19 insertions, 11 deletions
diff --git a/bin/provision b/bin/provision index e200e51..16f102f 100755 --- a/bin/provision +++ b/bin/provision @@ -3,25 +3,33 @@  # Simple shell provisioner for Vagrant instances.  # -# 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 +# Parameters +DIRNAME="`dirname $0`" + +# Load dependencies +source $DIRNAME/dependencies -# Install dependencies -source /vagrant/puppet/bin/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 sqlite3 libsqlite3-ruby libactiverecord-ruby ruby-sqlite3 usbutils; do +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. +# Link hiera configuration if needed.  if [ ! -h "/etc/puppet/hiera.yaml" ]; then -  sudo rm -f /etc/puppet/hiera.yaml -  sudo ln -s /vagrant/puppet/hiera/hiera.yaml /etc/puppet/hiera.yaml +  $SUDO rm -f /etc/puppet/hiera.yaml +  $SUDO ln -s $DIRNAME/../hiera/hiera.yaml /etc/puppet/hiera.yaml  fi -# Link puppet configuration. +# Link puppet configuration if needed.  if [ ! -h "/etc/puppet/puppet.conf" ]; then -  sudo rm -f /etc/puppet/puppet.conf -  sudo ln -s /vagrant/puppet/puppet.conf /etc/puppet/puppet.conf +  $SUDO rm -f /etc/puppet/puppet.conf +  $SUDO ln -s $DIRNAME/../puppet.conf /etc/puppet/puppet.conf  fi  | 
