mirror of
https://github.com/iiab/iiab.git
synced 2025-02-12 11:12:06 +00:00
19 lines
357 B
Bash
Executable file
19 lines
357 B
Bash
Executable file
#!/bin/bash -e
|
|
# Running from a git repo
|
|
# Assumes iiab repos are downloaded
|
|
|
|
apt -y update
|
|
apt -y full-upgrade
|
|
|
|
apt -y install git curl nano gawk wget pastebinit
|
|
|
|
cd /opt/iiab/iiab
|
|
scripts/ansible
|
|
|
|
mkdir -p /etc/iiab/install-flags
|
|
|
|
if [ ! -f /etc/iiab/local_vars.yml ]; then
|
|
cp /opt/iiab/iiab/vars/local_vars_none.yml /etc/iiab/local_vars.yml
|
|
fi
|
|
|
|
reboot
|