Skip to content
Snippets Groups Projects
Select Git revision
  • 1fa9e88a239c16a5f55d91e5380d8b6ec9568806
  • master default protected
  • th/caddy-wip
  • th/caddy
  • th/lego
  • th/acmebot
  • pyzabbix
  • th/keycloak
8 results

schilder.yml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    schilder.yml 456 B
    # https://github.com/ansible/ansible/issues/27699
    - name: ensure git module is able to clone
      command: mount -o remount,exec /tmp
    
    - name: ensure we have our templates
      git:
        repo: "{{ schilder_templates_url }}"
        dest: "{{ app_home }}/tex"
        key_file: /root/.ssh/schilder
        version: HEAD
      notify:
        - "restart uwsgi instance {{ app.instance }}"
    
    - name: ensure git module is not able to clone anymore
      command: mount -o remount,noexec /tmp