From a12c6b32f7cbb2e400c60000a0d736dd8d8e598f Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Tue, 3 Apr 2012 00:11:24 +0000 Subject: add-service: Change the systemd unitdir search order to match upstream. --- NEWS | 3 ++- add-service | 16 ++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index a33517c..17d19f6 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,5 @@ - * always reload systemd unit cache before attempting to restart units + * always reload systemd unit cache before attempting to restart units + * change the order we search systemd unitdirs to match upstream 2012-03-12 Guillaume Rousse 0.24.7 * drop dead code from add-syslog diff --git a/add-service b/add-service index bd16c8f..755403a 100755 --- a/add-service +++ b/add-service @@ -43,9 +43,9 @@ units_to_enable= # units enabled by msec systemd_migration_dir=/var/lib/rpm-helper/systemd-migration mkdir -p "${systemd_migration_dir}" -SYSTEMUNITDIR=/lib/systemd/system USERUNITDIR=/etc/systemd/system RUNTIMEUNITDIR=/run/systemd/system +SYSTEMUNITDIR=/lib/systemd/system find_unit() { unit=$(basename $1) @@ -56,13 +56,7 @@ find_unit() { # and disabling units we must use the official name. searchunit= - if [ -f "$SYSTEMUNITDIR/$unit" ]; then - if [ -L "$SYSTEMUNITDIR/$unit" ]; then - searchunit=$(/usr/bin/readlink "$SYSTEMUNITDIR/$unit") - else - searchunit="$SYSTEMUNITDIR/$unit" - fi - elif [ -f "$USERUNITDIR/$unit" ]; then + if [ -f "$USERUNITDIR/$unit" ]; then if [ -L "$USERUNITDIR/$unit" ]; then searchunit=$(/usr/bin/readlink "$USERUNITDIR/$unit") else @@ -74,6 +68,12 @@ find_unit() { else searchunit="$RUNTIMEUNITDIR/$unit" fi + elif [ -f "$SYSTEMUNITDIR/$unit" ]; then + if [ -L "$SYSTEMUNITDIR/$unit" ]; then + searchunit=$(/usr/bin/readlink "$SYSTEMUNITDIR/$unit") + else + searchunit="$SYSTEMUNITDIR/$unit" + fi fi if [ -n "$searchunit" ]; then echo -n $searchunit -- cgit v1.2.1