aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--NEWS2
-rwxr-xr-xadd-service1
3 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8891701..d1cce64 100644
--- a/Makefile
+++ b/Makefile
@@ -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 \
diff --git a/NEWS b/NEWS
index 6ef07ad..32944da 100644
--- a/NEWS
+++ b/NEWS
@@ -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