acquia/moonshot

View on GitHub
sample/bin/aws-codedeploy-samples/conf-mgmt/salt/local-only/deploy_hooks/before_install.sh

Summary

Maintainability
Test Coverage
#!/bin/bash

# Check for salt, and attempt to install if not

yum list installed | grep salt-minion &> /dev/null
if [ $? != 0 ]; then
    yum install -y --enablerepo=epel salt-minion
fi