SHA256
1
0
forked from pool/systemd

Accepting request 352729 from home:a_faerber:branches:Base:System

- systemd-sysv-install: Fix chkconfig argument for disable op

OBS-URL: https://build.opensuse.org/request/show/352729
OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=927
This commit is contained in:
Marcus Meissner 2016-01-13 18:14:36 +00:00 committed by Git OBS Bridge
parent d01f2765dc
commit ebffdec2b3
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Sat Jan 9 22:46:21 UTC 2016 - afaerber@suse.de
- systemd-sysv-install: Fix chkconfig argument for disable op
-------------------------------------------------------------------
Thu Jan 7 08:01:07 UTC 2016 - olaf@aepfle.de

View File

@ -20,7 +20,7 @@ ROOT="${ROOT:+--root=$ROOT}"
[ -n "$NAME" ] || usage
case "$1" in
enable) chkconfig $ROOT -a "$NAME" ;;
disable) chkconfig $ROOT -r "$NAME" ;;
disable) chkconfig $ROOT -d "$NAME" ;;
is-enabled) chkconfig $ROOT -t "$NAME" ;;
*) usage ;;
esac

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Sat Jan 9 22:46:21 UTC 2016 - afaerber@suse.de
- systemd-sysv-install: Fix chkconfig argument for disable op
-------------------------------------------------------------------
Thu Jan 7 08:01:07 UTC 2016 - olaf@aepfle.de