No Description

panda d57d37b693 add tor 4 years ago
debug 2e7b7c48b4 fix singularity 4 years ago
keys 4881a7d3ec second commit 4 years ago
repo 0016da9fed first commit 4 years ago
roles d57d37b693 add tor 4 years ago
README.md a4f6ca0be1 fix variables checking and add instructions for setting variables 4 years ago
common.yml a4f6ca0be1 fix variables checking and add instructions for setting variables 4 years ago
docker.yml e9fa43f8e0 add docker 4 years ago
hosts 0016da9fed first commit 4 years ago
lldp.yml 0016da9fed first commit 4 years ago
singularity.yml 2d15791ead added singularity 4 years ago
telegraf.yml 0016da9fed first commit 4 years ago
tincvpn.yml e9fa43f8e0 add docker 4 years ago
to_add.txt 4881a7d3ec second commit 4 years ago
tor.yml d57d37b693 add tor 4 years ago
transmission.yml 0016da9fed first commit 4 years ago
variables.yml a4f6ca0be1 fix variables checking and add instructions for setting variables 4 years ago

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
  • telegraf.yml
  • tincvpn.yml
  • transmission.yml
  • singularity.yml : installs go and builds and installs singularity

VERSIONS: docker-compose: variable: compose_ver look here: https://github.com/docker/compose/releases/latest

go: variable: singularity_go_ver look here: https://golang.org/dl/ , the package is like go1.14.linux-amd64.tar.gz and you take the "1.14"

singularity: varaible: singularity_ver look here: https://github.com/sylabs/singularity/releases/latest

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