fix bug 98165. Change the separator on rcadd/rcdel from : to | This will impact...
authorEric Edgar <rocket@gentoo.org>
Thu, 7 Jul 2005 14:27:31 +0000 (14:27 +0000)
committerEric Edgar <rocket@gentoo.org>
Thu, 7 Jul 2005 14:27:31 +0000 (14:27 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@759 d1e1f19c-881f-0410-ab34-b69fee027534

targets/support/rc-update.sh

index dcbc73347f9f1ee48ebdc6a3f28aa2c74e3cfe05..bff808069a8d357fc67abe65b8f8b262d95a7199 100644 (file)
@@ -48,7 +48,7 @@ then
     then
        for x in ${clst_rcadd}
        do
-           rc-update add "${x%%:*}" "${x##*:}"
+           rc-update add "${x%%|*}" "${x##*|}"
        done
     fi
 
@@ -56,7 +56,7 @@ then
     then
        for x in ${clst_rcdel}
        do
-           rc-update del "${x%%:*}" "${x##*:}"
+           rc-update del "${x%%|*}" "${x##*|}"
        done
     fi
 fi