From 07b89a8df3c78b793b342f70060b625b2a09719a Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Wed, 8 Aug 2012 20:59:29 +0000 Subject: [PATCH] Hve nodestat also look for https server git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@13458 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/nodestat.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/nodestat.pm b/xCAT-server/lib/xcat/plugins/nodestat.pm index 2e59b29ed..0f9d3b2e0 100644 --- a/xCAT-server/lib/xcat/plugins/nodestat.pm +++ b/xCAT-server/lib/xcat/plugins/nodestat.pm @@ -205,6 +205,8 @@ sub preprocess_request if (keys(%apps) == 0) { $apps{'sshd'}->{'group'} = "ALL"; #ALL means anything on the nodelist table, it is different from all $apps{'sshd'}->{'port'} = "22"; + $apps{'https'}->{'group'} = "ALL"; #ALL means anything on the nodelist table, it is different from all + $apps{'https'}->{'port'} = "443"; $apps{'pbs'}->{'group'} = "ALL"; $apps{'pbs'}->{'port'} = "15002"; $apps{'xend'}->{'group'} = "ALL"; @@ -213,7 +215,7 @@ sub preprocess_request $apps{'rdp'}->{'port'} = "3389"; $apps{'msrpc'}->{'group'} = "ALL"; $apps{'msrpc'}->{'port'} = "135"; - $apps{'APPS'}=['sshd', 'pbs', 'xend']; + $apps{'APPS'}=['sshd', 'https', 'pbs', 'xend']; } else { #go thorugh the settings and put defaults in foreach my $app (keys(%apps)) {