Execution
Date 16 Sep 2025 12:03:21 +0100
Duration 00:00:02.02
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.11
ara 1.7.3 / 1.7.3
Python 3.10.10
Summary
2 Hosts
3 Tasks
3 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/zz-test-zulip-sending.yaml

---
- name: Playbook to test zulip notification
  hosts: localhost
  gather_facts: true
  vars:
    notify_zulip:
      enabled: true
      stream: operations
      topic: "RM10136 close SSH by default"
    
  tasks:
    - name: Test task that succeeds
      ansible.builtin.debug:
        msg: "This task always succeeds"
    - name: Test task that changes
      ansible.builtin.lineinfile:
        path: "/tmp/test_file.txt"
        line: "Test line added at {{ '%Y-%m-%d %H:%M:%S' | strftime }}"
        create: true
        mode: '0640'
      delegate_to: 127.0.0.1