mirror of
https://github.com/xcat2/xcat-core.git
synced 2025-07-05 20:35:34 +00:00
38 lines
1.0 KiB
Awk
Executable File
38 lines
1.0 KiB
Awk
Executable File
#!/usr/bin/awk -f
|
|
BEGIN {
|
|
if (ENVIRON["USEOPENSSLFORXCAT"]) {
|
|
server = "openssl s_client -no_ssl3 -connect " ENVIRON["XCATSERVER"] " -rand /bin/nice 2> /dev/null"
|
|
if (!system("openssl s_client -help 2>&1 | grep -m 1 -q -- -no_ssl2")) {
|
|
server = "openssl s_client -no_ssl3 -no_ssl2 -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
|
|
}
|
|
} else {
|
|
server = "/inet/tcp/0/127.0.0.1/400"
|
|
}
|
|
|
|
quit = "no"
|
|
exitcode = 0
|
|
|
|
print "<xcatrequest>" |& server
|
|
print " <command>syncfiles</command>" |& server
|
|
if(RCP){
|
|
print " <arg>-r</arg>" |& server
|
|
print " <arg>"RCP"</arg>" |& server
|
|
}
|
|
print "</xcatrequest>" |& server
|
|
|
|
while (server |& getline) {
|
|
if (match($0,"<serverdone>")) {
|
|
quit = "yes"
|
|
}
|
|
if ((match($0,"<errorcode>") && !match($0,"<errorcode>0")) \
|
|
|| (match($0,"<error>") && !match($0,"<error>0")) ) {
|
|
exitcode = 1
|
|
}
|
|
|
|
if (match($0,"</xcatresponse>") && match(quit,"yes")) {
|
|
close(server)
|
|
exit exitcode
|
|
}
|
|
}
|
|
}
|