Fixed fedora install
This commit is contained in:
parent
44e33e9c6e
commit
381f4552ea
3 changed files with 9 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue