master #1
@ -8,5 +8,20 @@
|
|||||||
failed_when: false
|
failed_when: false
|
||||||
when: teleport_version_check|bool
|
when: teleport_version_check|bool
|
||||||
|
|
||||||
|
- name: "Check if teleport pid file exist"
|
||||||
|
ansible.builtin.stat:
|
||||||
|
path: "{{ pid_file_telport }}"
|
||||||
|
register: pid_file_telport_state
|
||||||
|
|
||||||
|
- name: "Get Main PID of Teleport"
|
||||||
|
when: pid_file_teleport_state.stat.isdir is defined and not pid_file_teleport_state.stat.isdir
|
||||||
|
ansible.builtin.shell: "cat /run/teleport.pid"
|
||||||
|
args:
|
||||||
|
executable: /bin/bash
|
||||||
|
register: teleport_main_pid
|
||||||
|
changed_when: false
|
||||||
|
failed_when: false
|
||||||
|
|
||||||
|
|
||||||
- name: "Update goteleport"
|
- name: "Update goteleport"
|
||||||
ansible.builtin.include_tasks: "install.yml"
|
ansible.builtin.include_tasks: "install.yml"
|
||||||
|
Loading…
Reference in New Issue
Block a user