36595c9b4c
- Update to libvirt 1.3.4 - Add support for migration data compression in QEMU driver - Drop libvirtd.socket - Many incremental improvements and bug fixes, see http://libvirt.org/news.html - Dropped patches: 216650f1-libxl-build-fix.patch, 6d8b6d28-mark-implicit-video-primary.patch, 03e8d5fb-qemu-perf-memory-corruption.patch, libvirtd-systemd-socket.patch OBS-URL: https://build.opensuse.org/request/show/393490 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=526
141 lines
3.8 KiB
Diff
141 lines
3.8 KiB
Diff
Adjust virtlogd init files to conform to SUSE standards
|
|
|
|
Index: libvirt-1.3.4/src/logging/virtlogd.init.in
|
|
===================================================================
|
|
--- libvirt-1.3.4.orig/src/logging/virtlogd.init.in
|
|
+++ libvirt-1.3.4/src/logging/virtlogd.init.in
|
|
@@ -4,59 +4,56 @@
|
|
# http://refspecs.linuxfoundation.org/LSB_5.0.0/LSB-Core-generic/LSB-Core-generic/initscrcomconv.html
|
|
#
|
|
### BEGIN INIT INFO
|
|
-# Provides: virtlogd
|
|
-# Default-Start: 3 4 5
|
|
-# Default-Stop: 0 1 2 6
|
|
-# Required-Start:
|
|
-# Required-Stop:
|
|
-# Should-Start: $network $remote_fs
|
|
-# Should-Stop: $network $remote_fs
|
|
+# Provides: virtlogd
|
|
+# Required-Start: $network $remote_fs
|
|
+# Required-Stop: $network $remote_fs
|
|
+# Default-Start: 3 5
|
|
+# Default-Stop: 0 1 2 4 6
|
|
+# Should-Start
|
|
+# Should-Stop:
|
|
# Short-Description: virtual machine log manager
|
|
-# Description: This is a daemon for managing logs
|
|
-# of virtual machine consoles
|
|
+# Description: This is a daemon for managing logs
|
|
+# of virtual machine consoles
|
|
### END INIT INFO
|
|
|
|
# the following is chkconfig init header
|
|
#
|
|
-# virtlogd: virtual machine log manager
|
|
+# virtlogd: virtual machine log manager
|
|
#
|
|
-# chkconfig: 345 96 04
|
|
-# description: This is a daemon for managing logs \
|
|
-# of virtual machine consoles
|
|
+# chkconfig: 345 96 04
|
|
+# description: This is a daemon for managing logs \
|
|
+# of virtual machine consoles
|
|
#
|
|
-# processname: virtlogd
|
|
-# pidfile: @localstatedir@/run/virtlogd.pid
|
|
+# processname: virtlogd
|
|
+# pidfile: @localstatedir@/run/virtlogd.pid
|
|
#
|
|
|
|
-# Source function library.
|
|
-. @sysconfdir@/rc.d/init.d/functions
|
|
+. @sysconfdir@/rc.status
|
|
+rc_reset
|
|
|
|
SERVICE=virtlogd
|
|
-PROCESS=virtlogd
|
|
+PROCESS=@sbindir@/virtlogd
|
|
PIDFILE=@localstatedir@/run/$SERVICE.pid
|
|
|
|
VIRTLOGD_ARGS=
|
|
|
|
test -f @sysconfdir@/sysconfig/virtlogd && . @sysconfdir@/sysconfig/virtlogd
|
|
|
|
-RETVAL=0
|
|
|
|
start() {
|
|
- echo -n $"Starting $SERVICE daemon: "
|
|
- daemon --pidfile $PIDFILE --check $SERVICE $PROCESS --daemon $VIRTLOGD_ARGS
|
|
- RETVAL=$?
|
|
- echo
|
|
- [ $RETVAL -eq 0 ] && touch @localstatedir@/lock/subsys/$SERVICE
|
|
+ echo -n $"Starting $SERVICE "
|
|
+ test -d $PIDDIR || mkdir -p $PIDDIR
|
|
+ startproc -p $PIDFILE $PROCESS --pid-file $PIDFILE --daemon $VIRTLOGD_ARGS
|
|
+ rc_status -v
|
|
}
|
|
|
|
stop() {
|
|
- echo -n $"Stopping $SERVICE daemon: "
|
|
+ echo -n $"Stopping $SERVICE "
|
|
|
|
- killproc -p $PIDFILE $PROCESS
|
|
+ killproc -p $PIDFILE $PROCESS > /dev/null 2>&1
|
|
RETVAL=$?
|
|
- echo
|
|
+ rc_status -v
|
|
if [ $RETVAL -eq 0 ]; then
|
|
- rm -f @localstatedir@/lock/subsys/$SERVICE
|
|
rm -f $PIDFILE
|
|
fi
|
|
}
|
|
@@ -70,9 +67,7 @@ reload() {
|
|
echo -n $"Reloading $SERVICE configuration: "
|
|
|
|
killproc -p $PIDFILE $PROCESS -USR1
|
|
- RETVAL=$?
|
|
- echo
|
|
- return $RETVAL
|
|
+ rc_status
|
|
}
|
|
|
|
# See how we were called.
|
|
@@ -81,18 +76,20 @@ case "$1" in
|
|
$1
|
|
;;
|
|
status)
|
|
- status -p $PIDFILE $PROCESS
|
|
- RETVAL=$?
|
|
+ echo -n "Checking status of $SERVICE "
|
|
+ checkproc $PROCESS
|
|
+ rc_status -v
|
|
;;
|
|
force-reload)
|
|
reload
|
|
;;
|
|
condrestart|try-restart)
|
|
- [ -f @localstatedir@/lock/subsys/$SERVICE ] && restart || :
|
|
+ $0 status >/dev/null && restart || :
|
|
;;
|
|
*)
|
|
echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|force-reload|try-restart}"
|
|
- exit 2
|
|
+ rc_failed 2
|
|
+ rc_exit
|
|
;;
|
|
esac
|
|
-exit $RETVAL
|
|
+rc_exit
|
|
Index: libvirt-1.3.4/src/logging/virtlogd.sysconf
|
|
===================================================================
|
|
--- libvirt-1.3.4.orig/src/logging/virtlogd.sysconf
|
|
+++ libvirt-1.3.4/src/logging/virtlogd.sysconf
|
|
@@ -1,3 +1,7 @@
|
|
+## Path: System/Virtualization/virtlogd
|
|
+
|
|
+## Type: string
|
|
+## Default: ""
|
|
#
|
|
# Pass extra arguments to virtlogd
|
|
#VIRTLOGD_ARGS=
|