Merge branch 'master' of github.com:bdebyl/deploy_home

This commit is contained in:
Bastian de Byl
2025-12-13 21:18:36 -05:00
6 changed files with 34 additions and 3 deletions

View File

@@ -98,3 +98,13 @@
include_tasks: podman/systemd-generate.yml
vars:
container_name: skudak-cloud
- name: disable nextcloud signup link in config
become: true
ansible.builtin.lineinfile:
path: "{{ cloud_skudak_path }}/config/config.php"
regexp: "^\\s*'simpleSignUpLink\\.shown'\\s*=>"
line: " 'simpleSignUpLink.shown' => false,"
insertbefore: '^\);'
create: false
failed_when: false