11 lines
246 B
Bash
Executable file
11 lines
246 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xe
|
|
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
|
|
fi
|
|
|
|
pip3 install --user ansible
|