2008-01-16 21:14:50 +00:00
|
|
|
#!/usr/bin/awk -f
|
|
|
|
BEGIN {
|
|
|
|
xcatdhost = ARGV[1]
|
|
|
|
xcatdport = ARGV[2]
|
|
|
|
|
|
|
|
ns = "/inet/tcp/0/" ARGV[1] "/" xcatdport
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
if((ns |& getline) > 0)
|
2012-05-15 08:17:57 +00:00
|
|
|
print $0 | "logger -t xcat -p local4.info"
|
2009-10-03 02:06:43 +00:00
|
|
|
else { #socket dead, retry
|
2012-05-15 08:17:57 +00:00
|
|
|
print "TFTP lockdir request retrying" | "logger -t xcat -p local4.info"
|
2009-10-03 02:06:43 +00:00
|
|
|
close(ns)
|
|
|
|
system("sleep 1")
|
|
|
|
}
|
2008-01-16 21:14:50 +00:00
|
|
|
|
|
|
|
if($0 == "ready")
|
|
|
|
print "locktftpdir" |& ns
|
|
|
|
if($0 == "done")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
close(ns)
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
}
|