c7c12b5dcb
cut them off git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1318 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
24 lines
666 B
Awk
Executable File
24 lines
666 B
Awk
Executable File
#!/usr/bin/awk -f
|
|
BEGIN {
|
|
server = "/inet/tcp/0/127.0.0.1/400"
|
|
quit = "no"
|
|
|
|
|
|
print "<xcatrequest>" |& server
|
|
print " <command>getcredentials</command>" |& server
|
|
print " <callback_port>300</callback_port>" |& server
|
|
print " <arg>"ARGV[1]"</arg>" |& server
|
|
print "</xcatrequest>" |& server
|
|
|
|
while (server |& getline) {
|
|
print $0
|
|
if (match($0,"<serverdone>")) {
|
|
quit = "yes"
|
|
}
|
|
if (match($0,"</xcatresponse>") && match(quit,"yes")) {
|
|
close(server)
|
|
exit
|
|
}
|
|
}
|
|
}
|