Sem descrição

panda a715877a3d fix README há 4 anos atrás
debug 2e7b7c48b4 fix singularity há 4 anos atrás
keys 4881a7d3ec second commit há 4 anos atrás
repo 0016da9fed first commit há 4 anos atrás
roles 1f9d9b223e fix tor role há 4 anos atrás
README.md a715877a3d fix README há 4 anos atrás
common.yml c58fc1837e fix tinc_vpn variable há 4 anos atrás
docker.yml e9fa43f8e0 add docker há 4 anos atrás
hosts 0016da9fed first commit há 4 anos atrás
lldp.yml 0016da9fed first commit há 4 anos atrás
singularity.yml 2d15791ead added singularity há 4 anos atrás
telegraf.yml 0016da9fed first commit há 4 anos atrás
tincvpn.yml e9fa43f8e0 add docker há 4 anos atrás
to_add.txt 4881a7d3ec second commit há 4 anos atrás
tor.yml d57d37b693 add tor há 4 anos atrás
transmission.yml 0016da9fed first commit há 4 anos atrás
variables.yml c58fc1837e fix tinc_vpn variable há 4 anos atrás

README.md

PREREQUISITES:

install ansible:

apt-get install -y ansible

add hosts lines to ansible:

echo "[thismachine]" >> /etc/ansible/hosts
echo "127.0.0.1" >> /etc/ansible/hosts

SETUP:

you have to change at least 2 variables:

  • users
  • hostname

which by default are set to "CHANGEME" anche the playbook is set to fail if these are set to CHANGEME

insert your user in:

variables.yml

in the list:

    users:
      goofy

and their ssh keys in the folder

keys

in form of filename:

goofy.key.pub

and format:

ssh-rsa [/CUT] user@host

insert your hostname in

variables.yml

in the variable:

hostname:

RUN DEFAULTS:

ansible-playbook common.yml

RUN OPTIONALS:

  • docker.yml : installs docker-ce and docker-compose (variable in variables.yml for latest of docker-compose)
  • lldp.yml : installs and enables LLDP
  • telegraf.yml
  • tincvpn.yml
  • transmission.yml
  • singularity.yml : installs go and builds and installs singularity
  • tor.yml : installs tor base from tor repo

VERSIONS:

GIT PUSH:

git add --all
git commit -m "added things to readme"
git push -u origin master

or:

git add --all && git commit -m "message" && git push -u origin master