--- mage/branches/alx-0_6_0/profiles/alx-060/forced-uninstall 2015/07/16 15:43:51 6756 +++ mage/branches/alx-0_6_0/profiles/alx-060/forced-uninstall 2015/07/16 15:50:50 6757 @@ -62,10 +62,10 @@ if [[ ! -z $(grep "^${i}=" ${CONFIG}) ]] then echo "fixing ${i} -> ${value}" - sed -i "s|^\(${i}=\).*|\1\"${value}\"|" ${CONFIG} + sed -i "s|^\(${i}=\).*|\1\'${value}\'|" ${CONFIG} else echo "adding ${i}=${value}" - echo "${i}=\"${value}\"" >> ${CONFIG} + echo "${i}='${value}'" >> ${CONFIG} fi done }