-Actually put in the getpostscript.awk script that was missing

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1252 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2008-05-02 18:36:16 +00:00
parent 5e20327791
commit 1093a5043d

View File

@ -0,0 +1,15 @@
#!/usr/bin/awk -f
BEGIN {
server = "/inet/tcp/0/127.0.0.1/400"
quit = "no"
print "<xcatrequest>" |& server
print " <command>getpostscript</command>" |& server
print " <scripttype>install</scripttype>" |& server
print "</xcatrequest>" |& server
while (server |& getline) {
print $0
}
}