ansible_roles_rework #2
3 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
---
|
||||
- debug:
|
||||
var: dev_machine
|
||||
- import_role:
|
||||
name: anyenv
|
||||
when:
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
name:
|
||||
- build-essential
|
||||
- cmake
|
||||
- libssl-dev
|
||||
- pkg-config
|
||||
state: latest
|
||||
|
||||
# - name: Add hstr repo
|
||||
|
|
Loading…
Add table
Reference in a new issue