joaocgreis / post-install

Scripts to execute after installing Ubuntu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Post-Install Scripts for Ubuntu

Ubuntu 20.04 LTS

sudo apt-get -y install git &&
(cd ~/.local &&
git init &&
(git remote add joaocgreis/post-install https://github.com/joaocgreis/post-install.git || true) &&
git fetch joaocgreis/post-install &&
git checkout -B ubuntu_20.04 joaocgreis/post-install/ubuntu_20.04 &&
git reset --hard &&
cd scripts &&
sudo -H ./root_base.sh &&
ansible-playbook -v base.yml) &&
echo '========== SUCCESS =========='

Ubuntu 18.04 LTS

sudo apt-get -y install git &&
(cd ~/.local &&
git init &&
(git remote add joaocgreis/post-install https://github.com/joaocgreis/post-install.git || true) &&
git fetch joaocgreis/post-install &&
git checkout -B ubuntu_18.04 joaocgreis/post-install/ubuntu_18.04 &&
git reset --hard &&
cd scripts &&
sudo -H ./root_base.sh &&
ansible-playbook -v base.yml) &&
echo '========== SUCCESS =========='

About

Scripts to execute after installing Ubuntu