Sophie

Sophie

distrib > Fedora > 14 > i386 > media > os > by-pkgid > 7c89c1a0cb1c56b0a44eec5ee6c5a959 > scriptlet

monotone-server-0.48-1.fc14.i686.rpm

PREIN

/bin/sh
# Add "monotone" user per http://fedoraproject.org/wiki/Packaging/UsersAndGroups
getent group monotone > /dev/null || groupadd -r monotone
getent passwd monotone > /dev/null ||
useradd -r -g monotone -r -d /var/lib/monotone -s /sbin/nologin \
        -c "Monotone Netsync Server" monotone
exit 0

PREUN

/bin/sh
if [ $1 = 0 ]; then
        /sbin/service monotone stop > /dev/null 2>&1
        /sbin/chkconfig --del monotone
fi

POSTIN

/bin/sh
# Register the monotone service
/sbin/chkconfig --add monotone