Fixed fedora install

This commit is contained in:
Anthony Cicchetti 2019-04-14 14:16:44 -04:00
parent 44e33e9c6e
commit 381f4552ea
3 changed files with 9 additions and 4 deletions

View file

@ -5,7 +5,7 @@ if [[ -f /etc/lsb-release ]]; then
sudo apt update
sudo apt -y install zsh git python-pip aptitude curl cmake libreadline-dev
else
sudo dnf install -y zsh git python-pip cmake
sudo dnf install -y zsh git python-pip cmake openssl-devel
fi
pip install ansible
pip3 install --user ansible

View file

@ -25,6 +25,6 @@
state: link
- name: Install SDKMan
shell: curl -s https://sdkman.io | zsh
shell: curl -s https://get.sdkman.io | zsh
args:
creates: ~/.sdkman/bin/sdkman-init.sh

View file

@ -1,6 +1,11 @@
---
- name: Download Rust
get_url:
url: https://sh.rustup.rs
dest: /tmp/install_rust.sh
- name: Install Rust
shell: curl https://sh.rustup.rs -sSf | sh
shell: /tmp/install_rust.sh -y
args:
creates: ~/.cargo