11 lines
196 B
Bash
Executable file
11 lines
196 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
|
|
else
|
|
sudo dnf install -y zsh git python-pip
|
|
fi
|
|
|
|
pip install ansible
|