Browse Source

HPCC-13630 Change to LocalEnvConfFile

Signed-off-by: Michael Gardner <michael.gardner@lexisnexis.com>
Michael Gardner 9 years ago
parent
commit
e4414dbedc
2 changed files with 2 additions and 2 deletions
  1. 1 1
      initfiles/sbin/configmgr.in
  2. 1 1
      initfiles/sbin/regex.awk.in.cmake

+ 1 - 1
initfiles/sbin/configmgr.in

@@ -93,7 +93,7 @@ if [ $# -eq 3 ]; then
     conffile=$3
     echo "<filename> = ${filename}"
     echo "<portnumber> = ${portnum}"
-    echo "<LocalConfFile> = ${conffile}"
+    echo "<LocalEnvConfFile> = ${conffile}"
     #checking where files exists or not
     if [ ! -e ${filename} ] || [ ! -e ${conffile} ]
     then

+ 1 - 1
initfiles/sbin/regex.awk.in.cmake

@@ -14,7 +14,7 @@
 #    limitations under the License.
 ################################################################################
 /LocalEnvFile/ && ( NEW_ENVFILE != "" ) { gsub("${CONFIG_DIR}/${ENV_XML_FILE}", NEW_ENVFILE )}
-/LocalConfFile/ && ( NEW_CONFFILE != "" ) { gsub("${CONFIG_DIR}/${ENV_CONF_FILE}", NEW_CONFFILE )  }
+/LocalEnvConfFile/ && ( NEW_CONFFILE != "" ) { gsub("${CONFIG_DIR}/${ENV_CONF_FILE}", NEW_CONFFILE )  }
 /EspBinding/ && ( NEW_PORT != "" )  { gsub(/port=\"[0-9]*\"/, "port=\""NEW_PORT  "\"" )  }
 
 { print $0 }