From 91795e141b10ba850c073dd8cc276fbe812a5af5 Mon Sep 17 00:00:00 2001 From: Administrator Date: Wed, 15 Oct 2025 11:08:32 +0000 Subject: [PATCH] Update 2 files - /roles/npm/tasks/main.yml - /roles/heimdall/tasks/main.yml --- roles/heimdall/tasks/main.yml | 12 ++++++++---- roles/npm/tasks/main.yml | 12 ++++++++---- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/roles/heimdall/tasks/main.yml b/roles/heimdall/tasks/main.yml index a70fc19..0629148 100644 --- a/roles/heimdall/tasks/main.yml +++ b/roles/heimdall/tasks/main.yml @@ -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 \ No newline at end of file + msg: "Heimdall container status check completed" + +- name: Display Heimdall container info + debug: + var: heimdall_status.stdout \ No newline at end of file diff --git a/roles/npm/tasks/main.yml b/roles/npm/tasks/main.yml index c4c2376..c798a2d 100644 --- a/roles/npm/tasks/main.yml +++ b/roles/npm/tasks/main.yml @@ -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 \ No newline at end of file + msg: "NPM container status check completed" + +- name: Display NPM container info + debug: + var: npm_status.stdout \ No newline at end of file