2008-05-02 18:36:16 +00:00
|
|
|
#!/usr/bin/awk -f
|
|
|
|
BEGIN {
|
2009-08-21 13:22:45 +00:00
|
|
|
server = "openssl s_client -quiet -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
|
2009-04-08 14:44:16 +00:00
|
|
|
|
|
|
|
|
2008-05-02 18:36:16 +00:00
|
|
|
quit = "no"
|
|
|
|
|
|
|
|
|
|
|
|
print "<xcatrequest>" |& server
|
|
|
|
print " <command>getpostscript</command>" |& server
|
|
|
|
print "</xcatrequest>" |& server
|
|
|
|
|
|
|
|
while (server |& getline) {
|
|
|
|
print $0
|
2008-05-07 19:34:12 +00:00
|
|
|
if (match($0,"<serverdone>")) {
|
|
|
|
quit = "yes"
|
|
|
|
}
|
|
|
|
if (match($0,"</xcatresponse>") && match(quit,"yes")) {
|
|
|
|
close(server)
|
|
|
|
exit
|
|
|
|
}
|
2008-05-02 18:36:16 +00:00
|
|
|
}
|
|
|
|
}
|