Final fixes

This commit is contained in:
Anthony Cicchetti 2019-07-30 21:26:08 -04:00
parent a267286607
commit 7455446c43
3 changed files with 4 additions and 3 deletions

View file

@ -7,7 +7,7 @@ if [[ $(command -v ansible) ]]; then
printf "ansible already installed"
elif [[ $(uname) == "Linux" ]]; then
if [[ $(command -v pacman) ]]; then
sudo pacman -Sy ansible
sudo pacman -Sy --noconfirm ansible
elif [[ $(command -v apt) ]]; then
sudo apt install -y ansible python3-apt
# ubuntu doesn't create a /usr/bin/python, so we have to make one ourselves
@ -16,6 +16,7 @@ elif [[ $(uname) == "Linux" ]]; then
sudo dnf install ansible -y
fi
elif [[ $(uname) == "Darwin" ]]; then
# Yeah, raw brew install
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
/usr/local/bin/brew install ansible
fi

View file

@ -1,6 +1,4 @@
---
- debug:
var: dev_machine
- import_role:
name: anyenv
when:

View file

@ -28,6 +28,8 @@
name:
- build-essential
- cmake
- libssl-dev
- pkg-config
state: latest
# - name: Add hstr repo