diff --git a/xCAT/postscripts/getpostscript.awk b/xCAT/postscripts/getpostscript.awk
index 14be03f59..f58740c5f 100755
--- a/xCAT/postscripts/getpostscript.awk
+++ b/xCAT/postscripts/getpostscript.awk
@@ -1,7 +1,7 @@
#!/usr/bin/awk -f
BEGIN {
if (ENVIRON["USEOPENSSLFORXCAT"]) {
- server = "openssl s_client -quiet -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
+ server = "openssl s_client -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
} else {
server = "/inet/tcp/0/127.0.0.1/400"
}
@@ -14,8 +14,15 @@ BEGIN {
print " getpostscript" |& server
print "" |& server
+ start = 0
while (server |& getline) {
- print $0
+ if (match($0,"")) {
+ start = 1
+ }
+ if (start == 1) {
+ print $0
+ }
+
if (match($0,"")) {
quit = "yes"
}