├── .gitignore ├── .travis.yml ├── .yamllint ├── README.md ├── ansible.cfg ├── bundle.sh ├── galaxy.yml ├── playbook.yml ├── playbooks └── templates │ └── playbook.yml ├── requirements.txt └── roles ├── baseline ├── .yamllint ├── README.md ├── defaults │ └── main.yml ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── molecule │ ├── default │ │ └── molecule.yml │ ├── docker-centos-7 │ │ └── molecule.yml │ ├── docker-debian-10 │ │ └── molecule.yml │ ├── docker-debian-9 │ │ └── molecule.yml │ ├── docker-fedora-30 │ │ └── molecule.yml │ ├── docker-rhel-7 │ │ └── molecule.yml │ ├── docker-rhel-8 │ │ └── molecule.yml │ ├── docker-ubuntu-18.04 │ │ └── molecule.yml │ ├── resources │ │ ├── Dockerfile.j2 │ │ ├── playbooks │ │ │ ├── bootstrap.sh │ │ │ ├── playbook.yml │ │ │ ├── prepare.yml │ │ │ └── verify.yml │ │ └── tests │ │ │ └── test_default.yml │ └── vagrant-centos-7 │ │ └── molecule.yml ├── tasks │ ├── epel.yml │ ├── hosts.yml │ ├── main.yml │ └── pip.yml ├── templates │ └── hosts.j2 └── vars │ └── main.yml ├── dotfiles ├── .yamllint ├── README.md ├── defaults │ └── main.yml ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── molecule │ ├── default │ │ └── molecule.yml │ └── resources │ │ ├── Dockerfile.j2 │ │ └── playbooks │ │ ├── bootstrap.sh │ │ ├── playbook.yml │ │ ├── prepare.yml │ │ └── verify.yml ├── tasks │ └── main.yml └── vars │ └── main.yml ├── flatpak ├── .yamllint ├── README.md ├── defaults │ └── main.yml ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── molecule │ ├── default │ │ └── molecule.yml │ ├── docker-centos-7 │ │ └── molecule.yml │ ├── docker-debian-10 │ │ └── molecule.yml │ ├── docker-debian-9 │ │ └── molecule.yml │ ├── docker-fedora-30 │ │ └── molecule.yml │ ├── docker-rhel-7 │ │ └── molecule.yml │ ├── docker-rhel-8 │ │ └── molecule.yml │ ├── docker-ubuntu-18.04 │ │ └── molecule.yml │ ├── resources │ │ ├── Dockerfile.j2 │ │ ├── playbooks │ │ │ ├── bootstrap.sh │ │ │ ├── playbook.yml │ │ │ ├── prepare.yml │ │ │ └── verify.yml │ │ └── tests │ │ │ └── test_default.yml │ ├── vagrant-centos-7 │ │ └── molecule.yml │ ├── vagrant-debian-10 │ │ └── molecule.yml │ ├── vagrant-fedora-30 │ │ └── molecule.yml │ ├── vagrant-rhel-8 │ │ └── molecule.yml │ └── vagrant-ubuntu-18.04 │ │ └── molecule.yml ├── tasks │ ├── configure.yml │ ├── install.yml │ └── main.yml └── vars │ └── main.yml ├── hugo ├── .yamllint ├── README.md ├── defaults │ └── main.yml ├── meta │ └── main.yml ├── molecule │ ├── default │ │ └── molecule.yml │ ├── docker-centos-7 │ │ └── molecule.yml │ ├── docker-debian-10 │ │ └── molecule.yml │ ├── docker-debian-9 │ │ └── molecule.yml │ ├── docker-fedora-30 │ │ └── molecule.yml │ ├── docker-rhel-7 │ │ └── molecule.yml │ ├── docker-rhel-8 │ │ └── molecule.yml │ ├── docker-ubuntu-18.04 │ │ └── molecule.yml │ ├── resources │ │ ├── Dockerfile.j2 │ │ ├── playbooks │ │ │ ├── bootstrap.sh │ │ │ ├── playbook.yml │ │ │ ├── prepare.yml │ │ │ └── verify.yml │ │ └── tests │ │ │ └── test_default.yml │ ├── vagrant-centos-7 │ │ └── molecule.yml │ ├── vagrant-debian-10 │ │ └── molecule.yml │ ├── vagrant-fedora-30 │ │ └── molecule.yml │ ├── vagrant-rhel-8 │ │ └── molecule.yml │ └── vagrant-ubuntu-18.04 │ │ └── molecule.yml └── tasks │ └── main.yml ├── micro ├── .yamllint ├── README.md ├── defaults │ └── main.yml ├── meta │ └── main.yml ├── molecule │ ├── default │ │ └── molecule.yml │ └── resources │ │ ├── Dockerfile.j2 │ │ ├── playbooks │ │ ├── bootstrap.sh │ │ ├── playbook.yml │ │ ├── prepare.yml │ │ └── verify.yml │ │ └── tests │ │ └── test_default.yml ├── tasks │ └── main.yml └── vars │ └── main.yml ├── npm ├── .yamllint ├── README.md ├── defaults │ └── main.yml ├── meta │ └── main.yml ├── molecule │ ├── default │ │ └── molecule.yml │ ├── docker-centos-7 │ │ └── molecule.yml │ ├── docker-debian-10 │ │ └── molecule.yml │ ├── docker-debian-9 │ │ └── molecule.yml │ ├── docker-fedora-30 │ │ └── molecule.yml │ ├── docker-rhel-7 │ │ └── molecule.yml │ ├── docker-rhel-8 │ │ └── molecule.yml │ ├── docker-ubuntu-18.04 │ │ └── molecule.yml │ ├── resources │ │ ├── Dockerfile.j2 │ │ ├── playbooks │ │ │ ├── bootstrap.sh │ │ │ ├── playbook.yml │ │ │ ├── prepare.yml │ │ │ └── verify.yml │ │ └── tests │ │ │ └── test_default.yml │ ├── vagrant-centos-7 │ │ └── molecule.yml │ ├── vagrant-debian-10 │ │ └── molecule.yml │ ├── vagrant-fedora-30 │ │ └── molecule.yml │ ├── vagrant-rhel-8 │ │ └── molecule.yml │ └── vagrant-ubuntu-18.04 │ │ └── molecule.yml ├── tasks │ ├── install.yml │ └── main.yml └── vars │ └── main.yml ├── packages ├── .yamllint ├── README.md ├── defaults │ └── main.yml ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── molecule │ ├── default │ │ └── molecule.yml │ ├── docker-centos-7 │ │ └── molecule.yml │ ├── docker-debian-10 │ │ └── molecule.yml │ ├── docker-debian-9 │ │ └── molecule.yml │ ├── docker-fedora-30 │ │ └── molecule.yml │ ├── docker-rhel-7 │ │ └── molecule.yml │ ├── docker-rhel-8 │ │ └── molecule.yml │ ├── docker-ubuntu-18.04 │ │ └── molecule.yml │ ├── resources │ │ ├── Dockerfile.j2 │ │ ├── playbooks │ │ │ ├── bootstrap.sh │ │ │ ├── playbook.yml │ │ │ ├── prepare.yml │ │ │ └── verify.yml │ │ └── tests │ │ │ └── test_default.yml │ └── vagrant-rhel-8 │ │ └── molecule.yml ├── tasks │ └── main.yml └── vars │ └── main.yml ├── pandoc ├── .yamllint ├── README.md ├── defaults │ └── main.yml ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── molecule │ ├── default │ │ └── molecule.yml │ ├── docker-centos-7 │ │ └── molecule.yml │ ├── docker-debian-10 │ │ └── molecule.yml │ ├── docker-debian-9 │ │ └── molecule.yml │ ├── docker-fedora-30 │ │ └── molecule.yml │ ├── docker-rhel-7 │ │ └── molecule.yml │ ├── docker-rhel-8 │ │ └── molecule.yml │ ├── docker-ubuntu-18.04 │ │ └── molecule.yml │ ├── resources │ │ ├── Dockerfile.j2 │ │ ├── playbooks │ │ │ ├── bootstrap.sh │ │ │ ├── playbook.yml │ │ │ ├── prepare.yml │ │ │ └── verify.yml │ │ └── tests │ │ │ └── test_default.yml │ ├── vagrant-centos-7 │ │ └── molecule.yml │ ├── vagrant-debian-10 │ │ └── molecule.yml │ ├── vagrant-fedora-30 │ │ └── molecule.yml │ ├── vagrant-rhel-8 │ │ └── molecule.yml │ └── vagrant-ubuntu-18.04 │ │ └── molecule.yml ├── tasks │ └── main.yml └── vars │ └── main.yml ├── pip ├── .yamllint ├── README.md ├── defaults │ └── main.yml ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── molecule │ ├── default │ │ └── molecule.yml │ ├── docker-centos-7 │ │ └── molecule.yml │ ├── docker-debian-10 │ │ └── molecule.yml │ ├── docker-debian-9 │ │ └── molecule.yml │ ├── docker-fedora-30 │ │ └── molecule.yml │ ├── docker-rhel-7 │ │ └── molecule.yml │ ├── docker-rhel-8 │ │ └── molecule.yml │ ├── docker-ubuntu-18.04 │ │ └── molecule.yml │ ├── resources │ │ ├── Dockerfile.j2 │ │ ├── playbooks │ │ │ ├── bootstrap.sh │ │ │ ├── playbook.yml │ │ │ ├── prepare.yml │ │ │ └── verify.yml │ │ └── tests │ │ │ └── test_default.yml │ ├── vagrant-centos-7 │ │ └── molecule.yml │ ├── vagrant-debian-10 │ │ └── molecule.yml │ ├── vagrant-fedora-30 │ │ └── molecule.yml │ ├── vagrant-rhel-8 │ │ └── molecule.yml │ └── vagrant-ubuntu-18.04 │ │ └── molecule.yml ├── tasks │ ├── install.yml │ └── main.yml └── vars │ └── main.yml ├── profile ├── .yamllint ├── README.md ├── defaults │ └── main.yml ├── files │ └── neo.sh ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── molecule │ ├── default │ │ └── molecule.yml │ └── resources │ │ ├── Dockerfile.j2 │ │ ├── playbooks │ │ ├── bootstrap.sh │ │ ├── playbook.yml │ │ ├── prepare.yml │ │ └── verify.yml │ │ └── tests │ │ └── test_default.yml ├── tasks │ ├── issue.yml │ ├── main.yml │ ├── motd.yml │ └── neofetch.yml ├── templates │ ├── motd.j2 │ └── splash.issue.j2 └── vars │ └── main.yml └── secure ├── .yamllint ├── README.md ├── defaults └── main.yml ├── handlers └── main.yml ├── meta └── main.yml ├── molecule ├── default │ └── molecule.yml ├── docker-centos-7 │ └── molecule.yml ├── docker-debian-10 │ └── molecule.yml ├── docker-debian-9 │ └── molecule.yml ├── docker-fedora-30 │ └── molecule.yml ├── docker-rhel-7 │ └── molecule.yml ├── docker-rhel-8 │ └── molecule.yml ├── docker-ubuntu-18.04 │ └── molecule.yml ├── resources │ ├── Dockerfile.j2 │ ├── playbooks │ │ ├── bootstrap.sh │ │ ├── playbook.yml │ │ ├── prepare.yml │ │ └── verify.yml │ └── tests │ │ └── test_default.yml ├── vagrant-centos-7 │ └── molecule.yml ├── vagrant-debian-10 │ └── molecule.yml ├── vagrant-fedora-30 │ └── molecule.yml ├── vagrant-rhel-8 │ └── molecule.yml └── vagrant-ubuntu-18.04 │ └── molecule.yml ├── tasks ├── lynis.yml ├── main.yml ├── openscap.yml ├── ssh.yml └── sshd.yml └── vars └── main.yml /.gitignore: -------------------------------------------------------------------------------- 1 | releases/ 2 | docs/site 3 | id_rsa 4 | .vagrant 5 | *.pyc 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/.yamllint -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/ansible.cfg -------------------------------------------------------------------------------- /bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/bundle.sh -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/galaxy.yml -------------------------------------------------------------------------------- /playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/playbook.yml -------------------------------------------------------------------------------- /playbooks/templates/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/playbooks/templates/playbook.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/requirements.txt -------------------------------------------------------------------------------- /roles/baseline/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/.yamllint -------------------------------------------------------------------------------- /roles/baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/README.md -------------------------------------------------------------------------------- /roles/baseline/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for baseline 3 | -------------------------------------------------------------------------------- /roles/baseline/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for baseline -------------------------------------------------------------------------------- /roles/baseline/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/meta/main.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/docker-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/docker-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/docker-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/docker-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/docker-debian-9/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/docker-debian-9/molecule.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/docker-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/docker-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/docker-rhel-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/docker-rhel-7/molecule.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/docker-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/docker-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/docker-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/docker-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/baseline/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/baseline/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/resources/tests/test_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/resources/tests/test_default.yml -------------------------------------------------------------------------------- /roles/baseline/molecule/vagrant-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/molecule/vagrant-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/baseline/tasks/epel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/tasks/epel.yml -------------------------------------------------------------------------------- /roles/baseline/tasks/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/tasks/hosts.yml -------------------------------------------------------------------------------- /roles/baseline/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/tasks/main.yml -------------------------------------------------------------------------------- /roles/baseline/tasks/pip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/tasks/pip.yml -------------------------------------------------------------------------------- /roles/baseline/templates/hosts.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/baseline/templates/hosts.j2 -------------------------------------------------------------------------------- /roles/baseline/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for baseline -------------------------------------------------------------------------------- /roles/dotfiles/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/.yamllint -------------------------------------------------------------------------------- /roles/dotfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/README.md -------------------------------------------------------------------------------- /roles/dotfiles/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/defaults/main.yml -------------------------------------------------------------------------------- /roles/dotfiles/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/handlers/main.yml -------------------------------------------------------------------------------- /roles/dotfiles/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/meta/main.yml -------------------------------------------------------------------------------- /roles/dotfiles/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/dotfiles/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/dotfiles/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/dotfiles/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/dotfiles/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/dotfiles/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/dotfiles/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/tasks/main.yml -------------------------------------------------------------------------------- /roles/dotfiles/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/dotfiles/vars/main.yml -------------------------------------------------------------------------------- /roles/flatpak/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/.yamllint -------------------------------------------------------------------------------- /roles/flatpak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/README.md -------------------------------------------------------------------------------- /roles/flatpak/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/defaults/main.yml -------------------------------------------------------------------------------- /roles/flatpak/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/handlers/main.yml -------------------------------------------------------------------------------- /roles/flatpak/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/meta/main.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/docker-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/docker-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/docker-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/docker-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/docker-debian-9/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/docker-debian-9/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/docker-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/docker-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/docker-rhel-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/docker-rhel-7/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/docker-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/docker-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/docker-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/docker-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/flatpak/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/flatpak/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/resources/tests/test_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/resources/tests/test_default.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/vagrant-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/vagrant-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/vagrant-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/vagrant-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/vagrant-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/vagrant-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/vagrant-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/vagrant-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/molecule/vagrant-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/molecule/vagrant-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/flatpak/tasks/configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/tasks/configure.yml -------------------------------------------------------------------------------- /roles/flatpak/tasks/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/tasks/install.yml -------------------------------------------------------------------------------- /roles/flatpak/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/tasks/main.yml -------------------------------------------------------------------------------- /roles/flatpak/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/flatpak/vars/main.yml -------------------------------------------------------------------------------- /roles/hugo/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/.yamllint -------------------------------------------------------------------------------- /roles/hugo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/README.md -------------------------------------------------------------------------------- /roles/hugo/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/defaults/main.yml -------------------------------------------------------------------------------- /roles/hugo/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/meta/main.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/docker-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/docker-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/docker-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/docker-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/docker-debian-9/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/docker-debian-9/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/docker-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/docker-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/docker-rhel-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/docker-rhel-7/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/docker-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/docker-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/docker-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/docker-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/hugo/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/hugo/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/resources/tests/test_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/resources/tests/test_default.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/vagrant-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/vagrant-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/vagrant-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/vagrant-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/vagrant-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/vagrant-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/vagrant-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/vagrant-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/molecule/vagrant-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/molecule/vagrant-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/hugo/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/hugo/tasks/main.yml -------------------------------------------------------------------------------- /roles/micro/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/.yamllint -------------------------------------------------------------------------------- /roles/micro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/README.md -------------------------------------------------------------------------------- /roles/micro/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/defaults/main.yml -------------------------------------------------------------------------------- /roles/micro/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/meta/main.yml -------------------------------------------------------------------------------- /roles/micro/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/micro/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/micro/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/micro/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/micro/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/micro/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/micro/molecule/resources/tests/test_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/molecule/resources/tests/test_default.yml -------------------------------------------------------------------------------- /roles/micro/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/micro/tasks/main.yml -------------------------------------------------------------------------------- /roles/micro/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for micro 3 | -------------------------------------------------------------------------------- /roles/npm/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/.yamllint -------------------------------------------------------------------------------- /roles/npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/README.md -------------------------------------------------------------------------------- /roles/npm/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/defaults/main.yml -------------------------------------------------------------------------------- /roles/npm/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/meta/main.yml -------------------------------------------------------------------------------- /roles/npm/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/docker-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/docker-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/docker-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/docker-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/docker-debian-9/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/docker-debian-9/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/docker-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/docker-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/docker-rhel-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/docker-rhel-7/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/docker-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/docker-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/docker-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/docker-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/npm/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/npm/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/npm/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/npm/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/npm/molecule/resources/tests/test_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/resources/tests/test_default.yml -------------------------------------------------------------------------------- /roles/npm/molecule/vagrant-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/vagrant-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/vagrant-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/vagrant-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/vagrant-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/vagrant-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/vagrant-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/vagrant-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/npm/molecule/vagrant-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/molecule/vagrant-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/npm/tasks/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/tasks/install.yml -------------------------------------------------------------------------------- /roles/npm/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/tasks/main.yml -------------------------------------------------------------------------------- /roles/npm/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/npm/vars/main.yml -------------------------------------------------------------------------------- /roles/packages/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/.yamllint -------------------------------------------------------------------------------- /roles/packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/README.md -------------------------------------------------------------------------------- /roles/packages/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/defaults/main.yml -------------------------------------------------------------------------------- /roles/packages/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for packages 3 | -------------------------------------------------------------------------------- /roles/packages/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/meta/main.yml -------------------------------------------------------------------------------- /roles/packages/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/packages/molecule/docker-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/docker-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/packages/molecule/docker-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/docker-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/packages/molecule/docker-debian-9/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/docker-debian-9/molecule.yml -------------------------------------------------------------------------------- /roles/packages/molecule/docker-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/docker-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/packages/molecule/docker-rhel-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/docker-rhel-7/molecule.yml -------------------------------------------------------------------------------- /roles/packages/molecule/docker-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/docker-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/packages/molecule/docker-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/docker-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/packages/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/packages/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/packages/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/packages/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/packages/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/packages/molecule/resources/tests/test_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/resources/tests/test_default.yml -------------------------------------------------------------------------------- /roles/packages/molecule/vagrant-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/molecule/vagrant-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/packages/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/tasks/main.yml -------------------------------------------------------------------------------- /roles/packages/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/packages/vars/main.yml -------------------------------------------------------------------------------- /roles/pandoc/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/.yamllint -------------------------------------------------------------------------------- /roles/pandoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/README.md -------------------------------------------------------------------------------- /roles/pandoc/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/defaults/main.yml -------------------------------------------------------------------------------- /roles/pandoc/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/handlers/main.yml -------------------------------------------------------------------------------- /roles/pandoc/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/meta/main.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/docker-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/docker-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/docker-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/docker-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/docker-debian-9/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/docker-debian-9/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/docker-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/docker-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/docker-rhel-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/docker-rhel-7/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/docker-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/docker-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/docker-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/docker-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/pandoc/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/pandoc/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/resources/tests/test_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/resources/tests/test_default.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/vagrant-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/vagrant-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/vagrant-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/vagrant-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/vagrant-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/vagrant-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/vagrant-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/vagrant-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/molecule/vagrant-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/molecule/vagrant-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/pandoc/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/tasks/main.yml -------------------------------------------------------------------------------- /roles/pandoc/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pandoc/vars/main.yml -------------------------------------------------------------------------------- /roles/pip/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/.yamllint -------------------------------------------------------------------------------- /roles/pip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/README.md -------------------------------------------------------------------------------- /roles/pip/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/defaults/main.yml -------------------------------------------------------------------------------- /roles/pip/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/handlers/main.yml -------------------------------------------------------------------------------- /roles/pip/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/meta/main.yml -------------------------------------------------------------------------------- /roles/pip/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/docker-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/docker-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/docker-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/docker-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/docker-debian-9/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/docker-debian-9/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/docker-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/docker-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/docker-rhel-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/docker-rhel-7/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/docker-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/docker-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/docker-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/docker-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/pip/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/pip/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/pip/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/pip/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/pip/molecule/resources/tests/test_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/resources/tests/test_default.yml -------------------------------------------------------------------------------- /roles/pip/molecule/vagrant-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/vagrant-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/vagrant-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/vagrant-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/vagrant-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/vagrant-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/vagrant-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/vagrant-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/pip/molecule/vagrant-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/molecule/vagrant-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/pip/tasks/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/tasks/install.yml -------------------------------------------------------------------------------- /roles/pip/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/pip/tasks/main.yml -------------------------------------------------------------------------------- /roles/pip/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for pip 3 | -------------------------------------------------------------------------------- /roles/profile/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/.yamllint -------------------------------------------------------------------------------- /roles/profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/README.md -------------------------------------------------------------------------------- /roles/profile/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/defaults/main.yml -------------------------------------------------------------------------------- /roles/profile/files/neo.sh: -------------------------------------------------------------------------------- 1 | /usr/local/bin/neofetch 2 | -------------------------------------------------------------------------------- /roles/profile/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/handlers/main.yml -------------------------------------------------------------------------------- /roles/profile/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/meta/main.yml -------------------------------------------------------------------------------- /roles/profile/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/profile/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/profile/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/profile/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/profile/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/profile/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/profile/molecule/resources/tests/test_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/molecule/resources/tests/test_default.yml -------------------------------------------------------------------------------- /roles/profile/tasks/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/tasks/issue.yml -------------------------------------------------------------------------------- /roles/profile/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/tasks/main.yml -------------------------------------------------------------------------------- /roles/profile/tasks/motd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/tasks/motd.yml -------------------------------------------------------------------------------- /roles/profile/tasks/neofetch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/tasks/neofetch.yml -------------------------------------------------------------------------------- /roles/profile/templates/motd.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/templates/motd.j2 -------------------------------------------------------------------------------- /roles/profile/templates/splash.issue.j2: -------------------------------------------------------------------------------- 1 | => Managed by Ansible <= 2 | -------------------------------------------------------------------------------- /roles/profile/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/profile/vars/main.yml -------------------------------------------------------------------------------- /roles/secure/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/.yamllint -------------------------------------------------------------------------------- /roles/secure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/README.md -------------------------------------------------------------------------------- /roles/secure/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for secure 3 | -------------------------------------------------------------------------------- /roles/secure/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/handlers/main.yml -------------------------------------------------------------------------------- /roles/secure/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/meta/main.yml -------------------------------------------------------------------------------- /roles/secure/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/default/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/docker-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/docker-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/docker-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/docker-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/docker-debian-9/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/docker-debian-9/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/docker-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/docker-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/docker-rhel-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/docker-rhel-7/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/docker-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/docker-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/docker-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/docker-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/resources/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/resources/Dockerfile.j2 -------------------------------------------------------------------------------- /roles/secure/molecule/resources/playbooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/resources/playbooks/bootstrap.sh -------------------------------------------------------------------------------- /roles/secure/molecule/resources/playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/resources/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/secure/molecule/resources/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/resources/playbooks/prepare.yml -------------------------------------------------------------------------------- /roles/secure/molecule/resources/playbooks/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/resources/playbooks/verify.yml -------------------------------------------------------------------------------- /roles/secure/molecule/resources/tests/test_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/resources/tests/test_default.yml -------------------------------------------------------------------------------- /roles/secure/molecule/vagrant-centos-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/vagrant-centos-7/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/vagrant-debian-10/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/vagrant-debian-10/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/vagrant-fedora-30/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/vagrant-fedora-30/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/vagrant-rhel-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/vagrant-rhel-8/molecule.yml -------------------------------------------------------------------------------- /roles/secure/molecule/vagrant-ubuntu-18.04/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/molecule/vagrant-ubuntu-18.04/molecule.yml -------------------------------------------------------------------------------- /roles/secure/tasks/lynis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/tasks/lynis.yml -------------------------------------------------------------------------------- /roles/secure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/tasks/main.yml -------------------------------------------------------------------------------- /roles/secure/tasks/openscap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/tasks/openscap.yml -------------------------------------------------------------------------------- /roles/secure/tasks/ssh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/tasks/ssh.yml -------------------------------------------------------------------------------- /roles/secure/tasks/sshd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/tasks/sshd.yml -------------------------------------------------------------------------------- /roles/secure/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crivetimihai/ansible_workstation/HEAD/roles/secure/vars/main.yml --------------------------------------------------------------------------------