Sha256: aa3083e31ae49c4ec13c81c3a24f27eac0f929913d4cf964321d920e54fddcc6
Contents?: true
Size: 468 Bytes
Versions: 11
Compression:
Stored size: 468 Bytes
Contents
#!/usr/bin/env bash set -e project=kitchen_hooks if ! hash bundle ; then echo 'Could not run `bundle`, fixing that for you...' gem install bundler || gem2.2 install bundler fi cd /opt/$project bundle install --without development:test:spec --local --deployment useradd --user-group --system -M --shell /bin/false $project || true for d in /opt/$project /etc/$project /var/log/$project /var/data/$project ; do mkdir -p $d chown -R $project:$project $d done
Version data entries
11 entries across 11 versions & 1 rubygems