Project

General

Profile

Download (507 Bytes) Statistics
| Branch: | Tag: | Revision:
#!/bin/bash -x

APP_ROOT=`pwd`

# setup basic settings file
sed -e 's/:login: false/:login: true/' $APP_ROOT/config/settings.yaml.example > $APP_ROOT/config/settings.yaml
cp $APP_ROOT/config/database.yml.example $APP_ROOT/config/database.yml

# install runtime C libs that are required:
if [ -e /etc/redhat-release ]; then
sudo yum install -y libvirt-devel
else
sudo apt-get update
sudo apt-get install -y libvirt-dev
fi
cat > $APP_ROOT/bundler.d/Gemfile.local.rb << EOF
gem 'facter'
gem 'puppet'
EOF
    (1-1/1)