diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | add-service | 1 |
3 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ PACKAGE = rpm-helper -VERSION = 0.24.4 +VERSION = 0.24.5 SVNPATH = svn+ssh://svn.mageia.org/svn/soft/rpm/$(PACKAGE) SCRIPT_FILES = add-user del-user create-file \ @@ -1,3 +1,5 @@ +2011-11-03 D Morgan <dmorgan@mageia.org> 0.24.5 + * Add support for systemd .path files 2011-11-03 Colin Guthrie <colin@mageia.org> 0.24.4 * fix up missing file in the Makefile diff --git a/add-service b/add-service index 26bc04e..5747aee 100755 --- a/add-service +++ b/add-service @@ -100,6 +100,7 @@ add_service() { for i in $units; do [ $i != ${i%.service} ] && ! fgrep -qx ${i%.service} $LIST && continue [ $i != ${i%.socket} ] && ! fgrep -qx ${i%.socket} $LIST && continue + [ $i != ${i%.path} ] && ! fgrep -qx ${i%.path} $LIST && continue units_to_enable="$units_to_enable $i" done fi |