github.com/lazyledger/lazyledger-core@v0.35.0-dev.0.20210613111200-4c651f053571/networks/remote/ansible/roles/status/tasks/main.yml (about)

     1  ---
     2  
     3  - name: application service status
     4    command: "service {{service}} status"
     5    changed_when: false
     6    register: status
     7  
     8  - name: Result
     9    debug: var=status.stdout_lines
    10