* [Cluster-devel] conga ./conga.spec.in.in luci/site/Makefile ma ...
@ 2007-06-05 5:30 rmccabe
0 siblings, 0 replies; 2+ messages in thread
From: rmccabe @ 2007-06-05 5:30 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Branch: EXPERIMENTAL
Changes by: rmccabe at sourceware.org 2007-06-05 05:30:23
Modified files:
. : conga.spec.in.in
luci/site : Makefile
make : version.in
Log message:
bz240034
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/conga.spec.in.in.diff?cvsroot=cluster&only_with_tag=EXPERIMENTAL&r1=1.77&r2=1.77.2.1
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/Makefile.diff?cvsroot=cluster&only_with_tag=EXPERIMENTAL&r1=1.12&r2=1.12.4.1
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/make/version.in.diff?cvsroot=cluster&only_with_tag=EXPERIMENTAL&r1=1.31.2.1&r2=1.31.2.2
--- conga/conga.spec.in.in 2007/05/03 19:55:10 1.77
+++ conga/conga.spec.in.in 2007/06/05 05:30:22 1.77.2.1
@@ -131,45 +131,48 @@
%endif
%pre -n luci
-if ! /bin/grep ^luci\:x /etc/group 2>&1 >/dev/null; then
- /usr/sbin/groupadd -r -f luci >/dev/null 2>&1
+if ! /bin/grep ^luci\:x /etc/group >&/dev/null; then
+ /usr/sbin/groupadd -r -f luci >&/dev/null
fi
-if ! /bin/grep ^luci\:x /etc/passwd 2>&1 >/dev/null; then
- /usr/sbin/useradd -r -M -s /sbin/nologin -d /var/lib/luci -g luci luci >/dev/null 2>&1
+if ! /bin/grep ^luci\:x /etc/passwd >&/dev/null; then
+ /usr/sbin/useradd -r -M -s /sbin/nologin -d /var/lib/luci -g luci luci >&/dev/null
fi
%post -n luci
/sbin/chkconfig --add luci
-/sbin/service luci status >/dev/null 2>&1
+/sbin/service luci status >&/dev/null
LUCI_RUNNING=$?
if [ "$LUCI_RUNNING" == "0" ]; then
- /sbin/service luci stop >/dev/null 2>&1
+ /sbin/service luci stop >&/dev/null
fi
-if [ -e /var/lib/luci/var/luci_backup.xml ]; then
+if [ -f /var/lib/luci/var/luci_backup.xml ]; then
# restore luci database
- /usr/sbin/luci_admin restore >/dev/null 2>&1
+ /usr/sbin/luci_admin restore >&/dev/null
fi
+
# set initial admin password (if not already set) to random value
-if ! /bin/grep True /var/lib/luci/.default_password_has_been_reset 2>&1 >/dev/null; then
- /usr/sbin/luci_admin password --random >/dev/null 2>&1
+grep True /var/lib/luci/.default_password_has_been_reset >&/dev/null
+if [ $? -ne 0 ]; then
+ /usr/sbin/luci_admin password --random >&/dev/null &&
+ rm -f /var/lib/luci/var/Data.fs.index /var/lib/luci/var/Data.fs.tmp /var/lib/luci/var/Data.fs.old
fi
if [ "$LUCI_RUNNING" == "0" ]; then
- /sbin/service luci start >/dev/null 2>&1
+ /sbin/service luci start >&/dev/null
fi
%preun -n luci
if [ "$1" == "0" ]; then
- /sbin/service luci stop >/dev/null 2>&1
+ /sbin/service luci stop >&/dev/null
/sbin/chkconfig --del luci
fi
-/sbin/service luci status >/dev/null 2>&1
+/sbin/service luci status >&/dev/null
LUCI_RUNNING=$?
if [ "$LUCI_RUNNING" == "0" ]; then
- /sbin/service luci stop >/dev/null 2>&1
+ /sbin/service luci stop >&/dev/null
fi
-/usr/sbin/luci_admin backup >/dev/null 2>&1
+/usr/sbin/luci_admin backup >&/dev/null
if [ "$LUCI_RUNNING" == "0" ]; then
- /sbin/service luci start >/dev/null 2>&1
+ /sbin/service luci start >&/dev/null
fi
@@ -244,33 +247,33 @@
%{_libexecdir}/ricci-modlog
%pre -n ricci
-if ! /bin/grep ^ricci\:x /etc/group 2>&1 >/dev/null; then
- /usr/sbin/groupadd -r -f ricci >/dev/null 2>&1
+if ! /bin/grep ^ricci\:x /etc/group >&/dev/null; then
+ /usr/sbin/groupadd -r -f ricci >&/dev/null
fi
-if ! /bin/grep ^ricci\:x /etc/passwd 2>&1 >/dev/null; then
- /usr/sbin/useradd -r -M -s /sbin/nologin -d /var/lib/ricci -g ricci ricci >/dev/null 2>&1
+if ! /bin/grep ^ricci\:x /etc/passwd >&/dev/null; then
+ /usr/sbin/useradd -r -M -s /sbin/nologin -d /var/lib/ricci -g ricci ricci >&/dev/null
fi
%post -n ricci
-DBUS_PID=`cat /var/run/messagebus.pid 2> /dev/null`
-/bin/kill -s SIGHUP $DBUS_PID > /dev/null 2>&1
-/sbin/service oddjobd reload >/dev/null 2>&1
+DBUS_PID=`cat /var/run/messagebus.pid 2>/dev/null`
+/bin/kill -s SIGHUP $DBUS_PID >&/dev/null
+/sbin/service oddjobd reload >&/dev/null
/sbin/chkconfig --add ricci
%preun -n ricci
if [ "$1" == "0" ]; then
- /sbin/service ricci stop > /dev/null 2>&1
+ /sbin/service ricci stop >&/dev/null
/sbin/chkconfig --del ricci
fi
%postun -n ricci
if [ "$1" == "0" ]; then
- DBUS_PID=`cat /var/run/messagebus.pid 2> /dev/null`
- /bin/kill -s SIGHUP $DBUS_PID > /dev/null 2>&1
- /sbin/service oddjobd reload > /dev/null 2>&1
+ DBUS_PID=`cat /var/run/messagebus.pid 2>/dev/null`
+ /bin/kill -s SIGHUP $DBUS_PID >&/dev/null
+ /sbin/service oddjobd reload >&/dev/null
fi
if [ "$1" == "1" ]; then
- /sbin/service ricci condrestart > /dev/null 2>&1
+ /sbin/service ricci condrestart >&/dev/null
fi
--- conga/luci/site/Makefile 2006/12/06 22:34:09 1.12
+++ conga/luci/site/Makefile 2007/06/05 05:30:22 1.12.4.1
@@ -40,8 +40,6 @@
install:
install -d ${DESTDIR}/var/lib/luci
- echo False > ${DESTDIR}/var/lib/luci/.default_password_has_been_reset
- chmod 640 ${DESTDIR}/var/lib/luci/.default_password_has_been_reset
install -d ${DESTDIR}/var/lib/luci/bin
# install `find luci/bin -maxdepth 1 -type f` ${DESTDIR}/var/lib/luci/bin
@@ -72,13 +70,6 @@
install -d ${DESTDIR}/var/lib/luci/var
install -m 600 luci/var/Data.fs ${DESTDIR}/var/lib/luci/var/Data.fs
- install -m 600 luci/var/Data.fs ${DESTDIR}/var/lib/luci/var/Data.fs.old
- touch ${DESTDIR}/var/lib/luci/var/Data.fs.index
- chmod 600 ${DESTDIR}/var/lib/luci/var/Data.fs.index
- touch ${DESTDIR}/var/lib/luci/var/Data.fs.tmp
- chmod 600 ${DESTDIR}/var/lib/luci/var/Data.fs.tmp
- touch ${DESTDIR}/var/lib/luci/var/Data.fs.lock
- chmod 644 ${DESTDIR}/var/lib/luci/var/Data.fs.lock
install -d ${DESTDIR}/var/lib/luci/var/pts
# install -m 644 `find luci/var/pts -maxdepth 1 -type f | grep .mo | grep -v \~ | grep -v \#` ${DESTDIR}/var/lib/luci/var/pts
install -d ${DESTDIR}/var/lib/luci/var/certs
@@ -95,4 +86,3 @@
distclean: clean
-
--- conga/make/version.in 2007/05/03 20:01:08 1.31.2.1
+++ conga/make/version.in 2007/06/05 05:30:23 1.31.2.2
@@ -1,5 +1,5 @@
VERSION=0.10.0
-RELEASE=0_UNRELEASED
+RELEASE=1_UNRELEASED
# Remove "_UNRELEASED" at release time.
# Put release num at the beggining,
# so that after it gets released, it has
^ permalink raw reply [flat|nested] 2+ messages in thread* [Cluster-devel] conga ./conga.spec.in.in luci/site/Makefile ma ...
@ 2007-08-11 4:16 rmccabe
0 siblings, 0 replies; 2+ messages in thread
From: rmccabe @ 2007-08-11 4:16 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Branch: RHEL5
Changes by: rmccabe at sourceware.org 2007-08-11 04:16:20
Modified files:
. : conga.spec.in.in
luci/site : Makefile
make : version.in
Log message:
Fix a longstanding bug that caused the luci database to not be restored properly upon upgrade unless a backup had been made previous to the upgrade.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/conga.spec.in.in.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.45.2.51&r2=1.45.2.52
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/Makefile.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.11.2.3&r2=1.11.2.4
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/make/version.in.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.21.2.21&r2=1.21.2.22
--- conga/conga.spec.in.in 2007/08/09 22:37:31 1.45.2.51
+++ conga/conga.spec.in.in 2007/08/11 04:16:19 1.45.2.52
@@ -134,18 +134,37 @@
%endif
%pre -n luci
-if ! /bin/grep ^luci\:x /etc/group >&/dev/null; then
+grep ^luci\:x /etc/group >&/dev/null
+if [ $? -ne 0 ]; then
/usr/sbin/groupadd -r -f luci >&/dev/null
fi
-if ! /bin/grep ^luci\:x /etc/passwd >&/dev/null; then
+
+grep ^luci\:x /etc/passwd >&/dev/null
+if [ $? -ne 0 ]; then
/usr/sbin/useradd -r -M -s /sbin/nologin -d /var/lib/luci -g luci luci >&/dev/null
fi
+if [ $1 -gt 1 ]; then
+ # Package upgrade
+ /sbin/service luci status >&/dev/null
+ LUCI_RUNNING=$?
+ if [ $LUCI_RUNNING -eq 0 ]; then
+ /sbin/service luci stop >& /dev/null
+ # allow the zope machinery time to shut down
+ sleep 4
+ fi
+ /usr/sbin/luci_admin backup >&/dev/null
+ if [ $LUCI_RUNNING -eq 0 ]; then
+ /sbin/service luci start >& /dev/null
+ fi
+fi
+exit 0
+
%post -n luci
/sbin/chkconfig --add luci
/sbin/service luci status >&/dev/null
LUCI_RUNNING=$?
-if [ "$LUCI_RUNNING" == "0" ]; then
+if [ $LUCI_RUNNING -eq 0 ]; then
/sbin/service luci stop >&/dev/null
fi
if [ -f /var/lib/luci/var/luci_backup.xml ]; then
@@ -157,28 +176,30 @@
grep True /var/lib/luci/.default_password_has_been_reset >&/dev/null
if [ $? -ne 0 ]; then
/usr/sbin/luci_admin password --random >&/dev/null &&
- rm -f /var/lib/luci/var/Data.fs.index /var/lib/luci/var/Data.fs.tmp /var/lib/luci/var/Data.fs.old
- find %{_libdir}/luci/zope/var -print0 2>/dev/null | xargs -0 chown luci:
+ rm -f /var/lib/luci/var/Data.fs.index /var/lib/luci/var/Data.fs.tmp /var/lib/luci/var/Data.fs.old >& /dev/null
+ find %{_libdir}/luci/zope/var -print0 2>/dev/null | xargs -0 chown luci: >&/dev/null
fi
-if [ "$LUCI_RUNNING" == "0" ]; then
+if [ $LUCI_RUNNING -eq 0 ]; then
/sbin/service luci start >&/dev/null
fi
+exit 0
%preun -n luci
-if [ "$1" == "0" ]; then
+if [ $1 -eq 0 ]; then
+ # uninstall
/sbin/service luci stop >&/dev/null
/sbin/chkconfig --del luci
-fi
-/sbin/service luci status >&/dev/null
-LUCI_RUNNING=$?
-if [ "$LUCI_RUNNING" == "0" ]; then
- /sbin/service luci stop >&/dev/null
-fi
-/usr/sbin/luci_admin backup >&/dev/null
-if [ "$LUCI_RUNNING" == "0" ]; then
- /sbin/service luci start >&/dev/null
-fi
+ /sbin/service luci status >&/dev/null
+ LUCI_RUNNING=$?
+ if [ $LUCI_RUNNING -eq 0 ]; then
+ /sbin/service luci stop >&/dev/null
+ # allow the zope machinery time to shut down
+ sleep 4
+ fi
+ /usr/sbin/luci_admin backup >&/dev/null
+fi
+exit 0
@@ -257,18 +278,21 @@
if ! /bin/grep ^ricci\:x /etc/passwd >&/dev/null; then
/usr/sbin/useradd -r -M -s /sbin/nologin -d /var/lib/ricci -g ricci ricci >&/dev/null
fi
+exit 0
%post -n ricci
DBUS_PID=`cat /var/run/messagebus.pid 2>/dev/null`
/bin/kill -s SIGHUP $DBUS_PID >&/dev/null
/sbin/service oddjobd reload >&/dev/null
/sbin/chkconfig --add ricci
+exit 0
%preun -n ricci
if [ "$1" == "0" ]; then
/sbin/service ricci stop >&/dev/null
/sbin/chkconfig --del ricci
fi
+exit 0
%postun -n ricci
if [ "$1" == "0" ]; then
@@ -279,7 +303,7 @@
if [ "$1" == "1" ]; then
/sbin/service ricci condrestart >&/dev/null
fi
-
+exit 0
--- conga/luci/site/Makefile 2007/07/16 22:10:27 1.11.2.3
+++ conga/luci/site/Makefile 2007/08/11 04:16:20 1.11.2.4
@@ -40,6 +40,8 @@
install:
install -d ${DESTDIR}/var/lib/luci
+ echo False > ${DESTDIR}/var/lib/luci/.default_password_has_been_reset
+ chmod 640 ${DESTDIR}/var/lib/luci/.default_password_has_been_reset
install -d ${DESTDIR}/var/lib/luci/bin
# install `find luci/bin -maxdepth 1 -type f` ${DESTDIR}/var/lib/luci/bin
--- conga/make/version.in 2007/08/08 21:24:12 1.21.2.21
+++ conga/make/version.in 2007/08/11 04:16:20 1.21.2.22
@@ -1,5 +1,5 @@
VERSION=0.10.0
-RELEASE=4_UNRELEASED
+RELEASE=4
# Remove "_UNRELEASED" at release time.
# Put release num at the beggining,
# so that after it gets released, it has
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-08-11 4:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-05 5:30 [Cluster-devel] conga ./conga.spec.in.in luci/site/Makefile ma rmccabe
-- strict thread matches above, loose matches on Subject: below --
2007-08-11 4:16 rmccabe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).