#!/bin/sh ############################################################################### # # # IPFire.org - A linux based firewall # # Copyright (C) 2007-2022 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation, either version 3 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # # # ############################################################################### . /etc/sysconfig/rc . $rc_functions pidfile=/var/run/dbus/pid socket=/var/run/dbus/system_bus_socket case "$1" in start) boot_mesg "Starting the D-Bus Messagebus Daemon..." /usr/bin/dbus-uuidgen --ensure loadproc -p "$pidfile" /usr/bin/dbus-daemon --system ;; stop) boot_mesg "Stopping the D-Bus Messagebus Daemon..." killproc -p "$pidfile" /usr/bin/dbus-daemon [ $? -eq 0 ] && rm -f "$socket" ;; restart) $0 stop sleep 1 $0 start ;; reload) boot_mesg "Reloading the D-Bus Messagebus Daemon..." reloadproc /usr/bin/dbus-daemon ;; status) statusproc /usr/bin/dbus-daemon ;; *) echo "Usage: $0 {start|stop|restart|status}" exit 1 ;; esac