diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-07-07 02:07:39 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-07-07 02:07:39 +0200 |
commit | 8092a428d40ac682df9e80c36988043854579679 (patch) | |
tree | 789262689c0eddf1deabfc01294b36140bee65a6 /man/systemd.path.xml | |
parent | 31a5f880cf7a742e63a81bacef681939ee4e6616 (diff) |
path,unit: support globbing in conditions and path units
Diffstat (limited to 'man/systemd.path.xml')
-rw-r--r-- | man/systemd.path.xml | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/man/systemd.path.xml b/man/systemd.path.xml index e816c3018c..f99931ab1e 100644 --- a/man/systemd.path.xml +++ b/man/systemd.path.xml @@ -111,6 +111,7 @@ <variablelist> <varlistentry> <term><varname>PathExists=</varname></term> + <term><varname>PathExistsGlob=</varname></term> <term><varname>PathChanged=</varname></term> <term><varname>DirectoryNotEmpty=</varname></term> @@ -121,7 +122,11 @@ file or directory. If the file specified exists the configured unit is - activated. <varname>PathChanged=</varname> + activated. <varname>PathExistsGlob=</varname> + works similar, but checks for the + existance of at least one file + matching the globbing pattern + specified. <varname>PathChanged=</varname> may be used to watch a file or directory and activate the configured unit whenever it changes or is @@ -140,12 +145,13 @@ <para>If a path is already existing (in case of - <varname>PathExists=</varname>) or a - directory already is not empty (in + <varname>PathExists=</varname> and + <varname>PathExistsGlob=</varname>) or + a directory already is not empty (in case of <varname>DirectoryNotEmpty=</varname>) - at the time the path unit is activated, - then the configured unit is + at the time the path unit is + activated, then the configured unit is immediately activated as well. Something similar does not apply to <varname>PathChanged=</varname>. |