diff --git a/playbooks/bootstrap b/playbooks/bootstrap index 683c542..67373e5 100755 --- a/playbooks/bootstrap +++ b/playbooks/bootstrap @@ -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 openssl-devel tmux gpg + sudo dnf install -y zsh git cmake openssl-devel tmux gpg fi pip3 install --user ansible diff --git a/playbooks/roles/common/tasks/rust.yml b/playbooks/roles/common/tasks/rust.yml index fa7ba3a..b080972 100644 --- a/playbooks/roles/common/tasks/rust.yml +++ b/playbooks/roles/common/tasks/rust.yml @@ -3,6 +3,7 @@ get_url: url: https://sh.rustup.rs dest: /tmp/install_rust.sh + mode: 0755 - name: Install Rust shell: /tmp/install_rust.sh -y