ba3644fcee
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemd?expand=0&rev=217
34 lines
560 B
Bash
34 lines
560 B
Bash
#! /bin/sh
|
|
#
|
|
# Copyright (c) 2001-2002 SuSE Linux AG, Nuernberg, Germany.
|
|
# All rights reserved.
|
|
#
|
|
# /etc/init.d/systemd-journald
|
|
#
|
|
### BEGIN INIT INFO
|
|
# Provides: syslog
|
|
# Required-Start: $null
|
|
# Required-Stop: $null
|
|
# Default-Start: 2 3 5
|
|
# Default-Stop:
|
|
# Short-Description: compat wrapper for journald
|
|
# Description: compat wrapper for journald
|
|
### END INIT INFO
|
|
|
|
. /etc/rc.status
|
|
|
|
rc_reset
|
|
|
|
case "$1" in
|
|
start|stop|restart)
|
|
rc_failed 3
|
|
rc_status -v
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
rc_exit
|