Postscript logging - removed logging from awk scripts that broke postscript processing

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5687 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
mellor 2010-04-06 16:58:05 +00:00
parent adfd551781
commit 25f1f7ce9d
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ BEGIN {
listener = "/inet/tcp/300/0/0"
quit = "no"
print $0 | "logger -t xcat"
print $0
while (match(quit,"no")) {
while ((listener |& getline) > 0) {
if (match($0,"CREDOKBYYOU?")) {

View File

@ -16,7 +16,7 @@ BEGIN {
print "</xcatrequest>" |& server
while (server |& getline) {
print $0 | "logger -t xcat"
print $0
if (match($0,"<serverdone>")) {
quit = "yes"
}

View File

@ -15,7 +15,7 @@ BEGIN {
print "</xcatrequest>" |& server
while (server |& getline) {
print $0 | "logger -t xcat"
print $0
if (match($0,"<serverdone>")) {
quit = "yes"
}