Update 2 files

- /roles/npm/tasks/main.yml
- /roles/heimdall/tasks/main.yml
This commit is contained in:
Administrator 2025-10-15 11:08:32 +00:00
parent 25c031e827
commit 91795e141b
2 changed files with 16 additions and 8 deletions

View File

@ -25,11 +25,15 @@
pause:
seconds: 15
- name: Check if Heimdall container is running
shell: docker ps --filter name=heimdall --format "table {{.Names}}\\t{{.Status}}"
register: heimdall_check
- name: Check Heimdall container status
shell: docker ps --filter name=heimdall
register: heimdall_status
changed_when: false
- name: Show Heimdall status
debug:
var: heimdall_check.stdout
msg: "Heimdall container status check completed"
- name: Display Heimdall container info
debug:
var: heimdall_status.stdout

View File

@ -26,11 +26,15 @@
pause:
seconds: 15
- name: Check if NPM container is running
shell: docker ps --filter name=npm --format "table {{.Names}}\\t{{.Status}}"
register: npm_check
- name: Check NPM container status
shell: docker ps --filter name=npm
register: npm_status
changed_when: false
- name: Show NPM status
debug:
var: npm_check.stdout
msg: "NPM container status check completed"
- name: Display NPM container info
debug:
var: npm_status.stdout