diff options
author | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2006-09-04 18:31:26 +0000 |
---|---|---|
committer | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2006-09-04 18:31:26 +0000 |
commit | 3a8fc50f12b1eef829779a63723da937bc234d2b (patch) | |
tree | 3f73a19e673cbb561d52637e674d90a4d857f0fa /encap | |
parent | 5c697fe530540192ca7cfda8834871589c8c3d02 (diff) | |
download | bcfg2-3a8fc50f12b1eef829779a63723da937bc234d2b.tar.gz bcfg2-3a8fc50f12b1eef829779a63723da937bc234d2b.tar.bz2 bcfg2-3a8fc50f12b1eef829779a63723da937bc234d2b.zip |
EncapPackages: Kill line needs to be quoted, or ostiaryd dies
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2188 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'encap')
-rwxr-xr-x | encap/src/makeself-dist/makedist.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/encap/src/makeself-dist/makedist.sh b/encap/src/makeself-dist/makedist.sh index 48f257fc8..f92494a2a 100755 --- a/encap/src/makeself-dist/makedist.sh +++ b/encap/src/makeself-dist/makedist.sh @@ -221,7 +221,7 @@ if [ "\${LOC_OST_SET}x" = "nox" ]; then chmod 600 \$LOC_OST_CFG LOC_OST_KILL_SED="\$LOC_INSTALLDIR/loc_ost_kill.sed" LOC_OST_ACTION_SED="\$LOC_INSTALLDIR/loc_ost_action.sed" - printf "s:%s:KILL=%s-kill:g\n" "\$LOC_OST_KILL_RE" "\`sedquote "\${LOC_OST_PASSWD}"\`" > \$LOC_OST_KILL_SED + printf "s:%s:KILL=%s%s-kill%s:g\n" '"' "\$LOC_OST_KILL_RE" "\`sedquote "\${LOC_OST_PASSWD}"\`" '"' > \$LOC_OST_KILL_SED printf "s:%s:ACTION=\\"%s-bcfg2-:g\n" "\$LOC_OST_ACTION_RE" "\`sedquote "\${LOC_OST_PASSWD}"\`" > \$LOC_OST_ACTION_SED sed -f \$LOC_OST_KILL_SED \$LOC_OST_CFG | sed -f \$LOC_OST_ACTION_SED \ > \${LOC_OST_CFG}.withpasswords |