mirror of
https://github.com/MatteZ02/infra.git
synced 2025-04-03 15:33:30 +00:00
Init Script: Updating
This commit is contained in:
parent
24c3e1c5f1
commit
45edbeead4
22
init.sh
22
init.sh
@ -23,25 +23,29 @@ exit 1
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mkdir -p ~/.ssh &> /dev/null
|
mkdir -p ~/.ssh/keys/matte &> /dev/null
|
||||||
|
if [[ ! -f ~/.ssh/keys/matte/infra ]]
|
||||||
|
then
|
||||||
|
ssh-keygen -f ~/.ssh/keys/matte/infra -t ed25519 -N '' &> /dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
apt-get update &> /dev/null
|
python3 -m venv ~/.venv/ansible &> /dev/null
|
||||||
apt-get install -y python3-pip python3-venv jq git curl &> /dev/null
|
~/.venv/ansible/bin/pip3 install cryptography dnspython hvac jmespath netaddr pexpect &> /dev/null
|
||||||
python3 -m venv /opt/ansible &> /dev/null
|
~/.venv/ansible/bin/pip3 install ansible &> /dev/null
|
||||||
/opt/ansible/bin/pip3 install ansible hvac netaddr jmespath pexpect &> /dev/null
|
|
||||||
|
~/.venv/ansible/bin/ansible-galaxy collection install ansible.posix containers.podman --upgrade &> /dev/null
|
||||||
|
|
||||||
/opt/ansible/bin/ansible-galaxy collection install -r requirements.yml --upgrade &> /dev/null
|
|
||||||
|
|
||||||
mkdir -p ~/.ansible &> /dev/null
|
mkdir -p ~/.ansible &> /dev/null
|
||||||
|
|
||||||
if [[ ! -f ~/.ansible/vault.yml ]]
|
if [[ ! -f ~/.ansible/vault/matte.yml ]]
|
||||||
then
|
then
|
||||||
echo -n "Vault Password: "
|
echo -n "Vault Password: "
|
||||||
read PASSWORD
|
read PASSWORD
|
||||||
echo "$PASSWORD" > ~/.ansible/vault.yml
|
echo "$PASSWORD" > ~/.ansible/vault/matte.yml
|
||||||
fi
|
fi
|
||||||
|
|
||||||
/opt/ansible/bin/ansible-pull -U ssh://git@github.com/MatteZ02/infra --accept-host-key --private-key ~/.ssh/id_rsa --vault-password-file ~/.ansible/vault.yml tasks.yml -t installer
|
~/.venv/ansible/bin/ansible-pull -U ssh://git@github.com/MatteZ02/infra -d ~/.ansible/pull/matte/infra --accept-host-key --private-key ~/.ssh/keys/matte/infra --vault-password-file ~/.ansible/vault/matte.yml tasks.yml -t installer
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
==============================
|
==============================
|
||||||
|
Loading…
x
Reference in New Issue
Block a user