undo fix for 3289489 hangs install see defect comments

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9414 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2011-04-27 11:35:34 +00:00
parent 7f87595450
commit f61245ec14
3 changed files with 5 additions and 13 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/awk -f
BEGIN {
if (ENVIRON["USEOPENSSLFORXCAT"]) {
server = "openssl s_client -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
server = "openssl s_client -quiet -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
} else {
server = "/inet/tcp/0/127.0.0.1/400"
}
@ -15,14 +15,8 @@ BEGIN {
print " <arg>"ARGV[i]"</arg>" |& server
print "</xcatrequest>" |& server
start = 0
while (server |& getline) {
if (match($0,"<xcatresponse>")) {
start = 1
}
if (start == 1) {
print $0
}
print $0
if (match($0,"<serverdone>")) {
quit = "yes"
}

View File

@ -1,7 +1,7 @@
#!/usr/bin/awk -f
BEGIN {
if (ENVIRON["USEOPENSSLFORXCAT"]) {
server = "openssl s_client -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
server = "openssl s_client -quiet -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
} else {
server = "/inet/tcp/0/127.0.0.1/400"
}
@ -15,9 +15,7 @@ BEGIN {
print "</xcatrequest>" |& server
while (server |& getline) {
if (match($0,/^\s*</)) {
print $0
}
print $0
if (match($0,"<serverdone>")) {
quit = "yes"
}

View File

@ -1,7 +1,7 @@
#!/usr/bin/awk -f
BEGIN {
if (ENVIRON["USEOPENSSLFORXCAT"]) {
server = "openssl s_client -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
server = "openssl s_client -quiet -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
} else {
server = "/inet/tcp/0/127.0.0.1/400"
}