blob: 349741c353a86589ce7da1f5508d1287bd703a81 [file] [log] [blame]
Grinberg Moticd6eeaa2017-02-23 14:26:04 +02001#!/bin/bash
Michael Lando451a3402017-02-19 10:28:42 +02002
Michael Lando451a3402017-02-19 10:28:42 +02003cd /root/chef-solo
Yuli Shlosberg0875ce02018-01-25 13:53:36 +02004chef-solo -c solo.rb -E ${ENVNAME}
5
6rc=$?
7
8if [[ $rc != 0 ]]; then
9 echo "Sanity failed !!!"
10 exit $rc
11else
12 echo "completed successfully :-)"
13 exit 0
14fi