1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_playbook_servers.git synced 2024-09-14 19:53:56 +02:00
ansible_playbook_servers/roles
dependabot[bot] f42b905fdf
Bump roles/l3d.packages from 0348a3b to d35207a
Bumps [roles/l3d.packages](https://github.com/roles-ansible/ansible_role_packages) from `0348a3b` to `d35207a`.
- [Release notes](https://github.com/roles-ansible/ansible_role_packages/releases)
- [Commits](0348a3bb5e...d35207a72a)

---
updated-dependencies:
- dependency-name: roles/l3d.packages
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-29 08:35:48 +00:00
..
do1jlr.acmetool@eaf3617f6b update submodules 2024-03-24 17:55:09 +01:00
do1jlr.admin_base@7d430bec45 update some submodules 2022-04-08 00:49:38 +02:00
do1jlr.ansible_version@2bf5d7c436 Upgrade 2023-01-05 22:48:45 +01:00
do1jlr.auth@1b60b7da3a update some submodules 2022-04-08 00:49:38 +02:00
do1jlr.avahi_client@9e0ac15d20 update submodules 2024-03-24 17:55:09 +01:00
do1jlr.dotfiles@348ea9a127 update submodules 2024-03-24 17:55:09 +01:00
do1jlr.dovecot@07e9cc918f update some submodules 2022-04-08 00:49:38 +02:00
do1jlr.mailserver_preperation@ff1fb3952f update some submodules 2022-04-08 00:49:38 +02:00
do1jlr.nginx@e2e4a10595 Rename git server 2023-06-14 02:39:36 +02:00
do1jlr.ntp@c3fabc5fc6 update submodules 2024-03-24 17:55:09 +01:00
do1jlr.ranger@dafcaefe12 update submodules 2024-03-24 17:55:09 +01:00
do1jlr.rspamd@1a34c90b44 update submodules 2024-03-24 17:55:09 +01:00
do1jlr.rtl_nic_firmware@7b2d2adbb9 update some submodules 2022-04-08 00:49:38 +02:00
do1jlr.sshd@15b7867a37 update submodules 2022-05-03 23:07:39 +02:00
do1jlr.unbound@2f26c3e27e submodules updated and branches specified 2022-12-08 01:56:37 +01:00
do1jlr.users@9203f239c6 update some submodules 2022-04-08 00:49:38 +02:00
do1jlr.webhost@c8d0feb203 update some submodules 2021-05-10 23:08:09 +02:00
do1jlr.weechat@8d80bd750d update submodules 2024-03-24 17:55:09 +01:00
gantsign.bat@dae043fe28 Bump roles/gantsign.bat from b263e5e to dae043f 2024-03-04 09:01:04 +00:00
geerlingguy.firewall@0dfa0689d0 update geerlingguy.firewall 2024-07-22 15:50:46 +02:00
geerlingguy.mysql@d29da05560 Bump roles/geerlingguy.mysql from d769e8b to d29da05 2024-07-22 08:57:09 +00:00
geerlingguy.postgresql@7f20fe244b Bump roles/geerlingguy.postgresql from c790ca8 to 7f20fe2 2024-07-22 08:57:05 +00:00
l3d.etebase@944fb8b73e update submodules 2024-03-24 17:55:09 +01:00
l3d.homebox@e11f365fba update submodules 2024-03-24 17:55:09 +01:00
l3d.nginx_exporter@05a970b942 update submodules 2024-03-24 17:55:09 +01:00
l3d.packages@d35207a72a Bump roles/l3d.packages from 0348a3b to d35207a 2024-07-29 08:35:48 +00:00
l3d.rustdesk@f40187808a Update submodules 2024-04-24 14:04:43 +02:00
mailserver_dovecot start creating postfix template 2021-01-10 04:43:05 +01:00
postfix@d104fdf714 update some submodules 2022-04-08 00:49:38 +02:00
robertdebock.dovecot@44472d9069 Bump roles/robertdebock.dovecot from ac03f49 to 44472d9 2024-07-08 08:29:55 +00:00
robertdebock.fail2ban@4c5cec6908 Bump roles/robertdebock.fail2ban from fc59d12 to 4c5cec6 2024-05-27 08:40:52 +00:00
unattended_upgrades@e83c8d0795 Update submodules 2024-07-16 21:19:49 +02:00
README.md Initial commit 2020-12-12 23:42:36 +01:00

Subfolders to include ansible roles.

All roles should be included in this subfolder. This is usually done as git submodule.

The most common command needed for this is:

git submodule add <public_path_to_gitrepo.git> <submodule_destination>

A simple way to checkk out the latest commit at the main branch for all submodules is:

git submodule foreach "(git checkout $(git symbolic-ref --short refs/remotes/origin/HEAD | sed "s@^origin/@@"); git pull)"

In abstract terms, the easiest way to do this is to treat submodules like normal git repositories after you have cloned them. This means checking out the main branch, committing things and similar actions. And when the local changes to submodule git repo are complete, add the new commit hash of submodule indein main git repo by adding, committing and pushing the entire submodule like an updated file.

Further information is also available at git-scm.com/docs/git-submodule