2009-06-04 15:33:44 +00:00
|
|
|
#!/usr/bin/awk -f
|
|
|
|
BEGIN {
|
2009-06-25 19:18:22 +00:00
|
|
|
server = "openssl s_client -quiet -connect " ENVIRON["XCATSERVER"]
|
2009-06-04 15:33:44 +00:00
|
|
|
|
|
|
|
quit = "no"
|
|
|
|
|
|
|
|
print "<xcatrequest>" |& server
|
|
|
|
print " <command>syncfiles</command>" |& server
|
|
|
|
print "</xcatrequest>" |& server
|
|
|
|
|
|
|
|
while (server |& getline) {
|
|
|
|
if (match($0,"<syncfiles done>")) {
|
|
|
|
quit = "yes"
|
|
|
|
}
|
|
|
|
if (match($0,"</xcatresponse>") && match(quit,"yes")) {
|
|
|
|
close(server)
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|