This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # This runs as root on the server | |
| chef_binary=/var/lib/gems/1.9.1/bin/chef-solo | |
| # Are we on a vanilla system? | |
| if ! test -f "$chef_binary"; then | |
| export DEBIAN_FRONTEND=noninteractive | |
| # Upgrade headlessly (this is only safe-ish on vanilla systems) |