diff options
author | Larry Smith Jr <mrlesmithjr@gmail.com> | 2017-04-07 23:30:56 -0400 |
---|---|---|
committer | Larry Smith Jr <mrlesmithjr@gmail.com> | 2017-04-07 23:30:56 -0400 |
commit | 3a55d2ab8ab3a399faaf25c4f46e7f2ea142edc6 (patch) | |
tree | 5d96c46e58511bc54cbd046d68fcc80b093cdafd /Vagrant/roles/ansible-rabbitmq/bootstrap.sh | |
parent | dcb10e24d902f6d20c811b0f6084b27a15cf3748 (diff) | |
download | ansible-rabbitmq-3a55d2ab8ab3a399faaf25c4f46e7f2ea142edc6.tar.gz ansible-rabbitmq-3a55d2ab8ab3a399faaf25c4f46e7f2ea142edc6.tar.zst ansible-rabbitmq-3a55d2ab8ab3a399faaf25c4f46e7f2ea142edc6.zip |
Updated Vagrant testing
Signed-off-by: Larry Smith Jr <mrlesmithjr@gmail.com>
Diffstat (limited to 'Vagrant/roles/ansible-rabbitmq/bootstrap.sh')
-rwxr-xr-x | Vagrant/roles/ansible-rabbitmq/bootstrap.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Vagrant/roles/ansible-rabbitmq/bootstrap.sh b/Vagrant/roles/ansible-rabbitmq/bootstrap.sh deleted file mode 100755 index 7bcf8b0..0000000 --- a/Vagrant/roles/ansible-rabbitmq/bootstrap.sh +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | #!/bin/bash | ||
2 | if [ -f /etc/debian_version ]; then | ||
3 | codename="$(lsb_release -c | awk {'print $2}')" | ||
4 | if [ $codename == "vivid" ]; then | ||
5 | sudo apt-get update && sudo apt-get -y install python-simplejson | ||
6 | fi | ||
7 | fi | ||
8 | if [ -f /etc/redhat-release ]; then | ||
9 | codename="$(gawk -F= '/^NAME/{print $2}' /etc/os-release)" | ||
10 | if [ $codename == "Fedora" ]; then | ||
11 | sudo dnf -y install python-devel python-dnf python-pip && \ | ||
12 | sudo dnf -y group install "C Development Tools and Libraries" | ||
13 | fi | ||
14 | fi | ||