aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roles (unfollow)
Commit message (Collapse)Author
2024-03-06firewall: align directivesEgor Tensin
2023-12-26debian_cloud_server: install net-toolsEgor Tensin
2023-12-26letsencrypt: don't sort SANsEgor Tensin
Sort them in the /etc status file only, for consistency. This should allow users to supply the SANs in custom order, preserving the intended main certificate domain (or whatever the technical term is).
2023-12-25debian_cloud_server: install nmap toolsEgor Tensin
2023-12-10my_workspace: configure git repositories separatelyEgor Tensin
Configuring git globally can interfere with my_dotfiles; seems more generic that way anyway.
2023-12-10letsencrypt: re-request certificates on email changeEgor Tensin
2023-12-10drop my personal info as defaults everywhereEgor Tensin
2023-11-20add vagrant roleEgor Tensin
2023-11-20ppa: derive the distribution automaticallyEgor Tensin
2023-11-20docker: add Arch-specific package namesEgor Tensin
2023-09-23add READMEs where missingEgor Tensin
2023-09-23docker: move handlers to handlers/Egor Tensin
2023-09-23docker: fix service nameEgor Tensin
2023-09-23linux_status: get rid of unnecessary service restarts, etc.Egor Tensin
2023-09-22docker: avoid duplicate service restartsEgor Tensin
2023-09-22docker: refactoringEgor Tensin
2023-09-22sshd: move service restart to handlersEgor Tensin
2023-09-22journald: move service restart to handlersEgor Tensin
2023-09-19switch to ansible.builtin.package in more placesEgor Tensin
2023-09-19get rid of install_recommends=false for apt packagesEgor Tensin
It will help to switch to the generic ansible.builtin.package module; it is also better to configure it globally anyway.
2023-09-19systemd_depend_*: don't restart servicesEgor Tensin
First, I don't think it's even necessary. If the service wasn't running, then we don't need to restart it. If it was running, it'll continue running fine with a new dependency; it'll be picked up on a future restart. Second, all of that doesn't even work due to (another) weird way Ansible treats handlers: https://github.com/ansible/ansible/issues/81722
2023-09-18apt: _actually_ don't reboot after cleaning up dependenciesEgor Tensin
2023-09-18use ansible.builtin.package generic moduleEgor Tensin
2023-09-13move rate_mirrors inside of pacmanEgor Tensin
2023-09-13apt: the extra packages are optionalEgor Tensin
2023-09-13pacman: add a parameter to install additional packagesEgor Tensin
2023-09-12etckeeper: manage the ignore listEgor Tensin
2023-09-11fix some ansible-lint warningsEgor Tensin
2023-09-11pacman: drop dependency on etckeeper role + refactoringEgor Tensin
2023-09-11rate_mirrors: drop dependency on etckeeper role, refactoringEgor Tensin
2023-09-11etckeeper: commit etckeeper.conf changesEgor Tensin
2023-09-11etckeeper: configure git remote as wellEgor Tensin
2023-09-11etckeeper: configure the thing, not just checkEgor Tensin
2023-09-04import roles etckeeper, pacman, rate_mirrorsEgor Tensin
2023-09-04update role READMEsEgor Tensin
2023-09-04fix task names, small refactoring, etc.Egor Tensin
2023-09-01sshd: validate the new configEgor Tensin
2023-09-01my_dotfiles: run setup.sh on updates onlyEgor Tensin
2023-09-01firewall: using the validate arg for testing the configEgor Tensin
2023-09-01fix some ansible-lint warningsEgor Tensin
2023-09-01sort module args, add missing state args, etc.Egor Tensin
2023-08-31apt: don't remove after autoremoving dependenciesEgor Tensin
2023-08-31docker: factor out service restart as a handlerEgor Tensin
2023-08-31apt_extra_packages -> apt_packagesEgor Tensin
2023-08-31apt: unattended upgrades off by defaultEgor Tensin
2023-08-31add a meta role debian_cloud_serverEgor Tensin
2023-08-31use role dependencies where appropriateEgor Tensin
2023-08-29apt_repo: run apt update on key changes as wellEgor Tensin
2023-08-29apt_repo: always overwrite the .list fileEgor Tensin
2023-08-29add dependent services to mount/network interface rolesEgor Tensin