From afc9d0242f753e664f387336e56aec872834b407 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 29 Feb 2008 21:34:11 +0000 Subject: [PATCH] Add missing setiscsiparms.awk which missed checkin git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@642 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT/postscripts/setiscsiparms.awk | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 xCAT/postscripts/setiscsiparms.awk diff --git a/xCAT/postscripts/setiscsiparms.awk b/xCAT/postscripts/setiscsiparms.awk new file mode 100755 index 000000000..d0eed95ba --- /dev/null +++ b/xCAT/postscripts/setiscsiparms.awk @@ -0,0 +1,21 @@ +#!/usr/bin/awk -f +BEGIN { + xcatdhost = ARGV[1] + xcatdport = ARGV[2] + kernel = ARGV[3] + initrd = ARGV[4] + kcmd = ARGV[5] + ns = "/inet/tcp/0/" ARGV[1] "/" xcatdport + + while(1) { + if((ns |& getline) > 0) + print $0 | "logger -t xcat" + + if($0 == "ready") + print "setiscsiparms "kernel" "initrd" "kcmd |& ns + if($0 == "done") + break + } + close(ns) + exit 0 +}