summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Likins <alikins@grimlock.devel.redhat.com>2008-02-25 17:56:31 -0500
committerAdrian Likins <alikins@grimlock.devel.redhat.com>2008-02-25 17:56:31 -0500
commit4ccddddaa05dbfb5904905a7442ecd8ab91c0764 (patch)
tree40e2ac88760b1ab239f56ab967d9b9df162deaa0
parent140dc3622629501333bd253fadd27d810871782f (diff)
downloadcertmaster-4ccddddaa05dbfb5904905a7442ecd8ab91c0764.tar.gz
certmaster-4ccddddaa05dbfb5904905a7442ecd8ab91c0764.tar.xz
certmaster-4ccddddaa05dbfb5904905a7442ecd8ab91c0764.zip
remove references to certmasterd
-rw-r--r--certmaster.spec9
1 files changed, 3 insertions, 6 deletions
diff --git a/certmaster.spec b/certmaster.spec
index ba581a6..8dc5ef3 100644
--- a/certmaster.spec
+++ b/certmaster.spec
@@ -74,11 +74,9 @@ rm -fr $RPM_BUILD_ROOT
%post
# for suse
if [ -x /usr/lib/lsb/install_initd ]; then
- /usr/lib/lsb/install_initd /etc/init.d/certmasterd
/usr/lib/lsb/install_initd /etc/init.d/certmaster
# for red hat distros
elif [ -x /sbin/chkconfig ]; then
- /sbin/chkconfig --add certmasterd
/sbin/chkconfig --add certmaster
# or, the old fashioned way
else
@@ -93,22 +91,21 @@ exit 0
%preun
if [ "$1" = 0 ] ; then
- /etc/init.d/certmasterd stop > /dev/null 2>&1
/etc/init.d/certmaster stop > /dev/null 2>&1
if [ -x /usr/lib/lsb/remove_initd ]; then
- /usr/lib/lsb/remove_initd /etc/init.d/certmasterd
/usr/lib/lsb/remove_initd /etc/init.d/certmaster
elif [ -x /sbin/chkconfig ]; then
- /sbin/chkconfig --del certmasterd
/sbin/chkconfig --del certmaster
else
- rm -f /etc/rc.d/rc?.d/???certmasterd
rm -f /etc/rc.d/rc?.d/???certmaster
fi
fi
%changelog
+* Mon Feb 25 2008 Adrian Likins <alikins@redhat.com> - 0.1-1
+- remove certmasterd references
+
* Thu Feb 7 2008 Michael DeHaan <mdehaan@redhat.com> - 0.1-1
- initial version, split off from func project, WIP