Last active
January 21, 2017 15:56
-
-
Save bfritz/fc19004a1b573551623ccc51eb2f26ab to your computer and use it in GitHub Desktop.
kitchen-salt for Arch Linux
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/sh | |
set -e | |
if [ ! -x /usr/bin/ruby ]; then | |
pacman -Sy --noconfirm ruby | |
mkdir -p /opt/chef/embedded/bin | |
ln -s /usr/bin/gem /opt/chef/embedded/bin/gem | |
fi |
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/sh | |
[ -x /usr/bin/salt ] || pacman -Sy --noconfirm salt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment