2009-06-04 15:33:44 +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-06-04 15:33:44 +00:00
|
|
|
|
2009-07-15 13:08:51 +00:00
|
|
|
quit = "no"
|
|
|
|
exitcode = 1
|
2009-06-04 15:33:44 +00:00
|
|
|
|
2009-07-15 13:08:51 +00:00
|
|
|
print "<xcatrequest>" |& server
|
|
|
|
print " <command>syncfiles</command>" |& server
|
|
|
|
print "</xcatrequest>" |& server
|
2009-06-04 15:33:44 +00:00
|
|
|
|
2009-07-15 13:08:51 +00:00
|
|
|
while (server |& getline) {
|
|
|
|
if (match($0,"<serverdone>")) {
|
|
|
|
quit = "yes"
|
|
|
|
}
|
|
|
|
if (match($0,"<errorcode>") || match($0,"<error>")) {
|
|
|
|
exitcode = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
if (match($0,"</xcatresponse>") && match(quit,"yes")) {
|
|
|
|
close(server)
|
|
|
|
exit exitcode
|
|
|
|
}
|
|
|
|
}
|
2009-06-04 15:33:44 +00:00
|
|
|
}
|