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 | |
parent | 31a5f880cf7a742e63a81bacef681939ee4e6616 (diff) |
path,unit: support globbing in conditions and path units
Diffstat (limited to 'man')
-rw-r--r-- | man/systemd.path.xml | 16 | ||||
-rw-r--r-- | man/systemd.unit.xml | 20 |
2 files changed, 24 insertions, 12 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>. diff --git a/man/systemd.unit.xml b/man/systemd.unit.xml index dd32e5505c..0ca18bd317 100644 --- a/man/systemd.unit.xml +++ b/man/systemd.unit.xml @@ -607,6 +607,7 @@ <varlistentry> <term><varname>ConditionPathExists=</varname></term> + <term><varname>ConditionPathExistsGlob=</varname></term> <term><varname>ConditionPathIsDirectory=</varname></term> <term><varname>ConditionDirectoryNotEmpty=</varname></term> <term><varname>ConditionKernelCommandLine=</varname></term> @@ -632,7 +633,12 @@ is prefixed with an exclamation mark (!), the test is negated, and the unit only started if the path does not - exist. <varname>ConditionPathIsDirectory=</varname> + exist. <varname>ConditionPathExistsGlob=</varname> + work in a similar way, but checks for + the existance of at least one file or + directory matching the specified + globbing + pattern. <varname>ConditionPathIsDirectory=</varname> is similar to <varname>ConditionPathExists=</varname> but verifies whether a certain path @@ -677,12 +683,12 @@ test may be negated by prepending an exclamation mark. <varname>ConditionSecurity=</varname> - may be used to check whether the given security - module is enabled on the system. - Currently the only recognized value is - <varname>selinux</varname>. - The test may be negated by prepending an - exclamation mark. Finally, + may be used to check whether the given + security module is enabled on the + system. Currently the only recognized + value is <varname>selinux</varname>. + The test may be negated by prepending + an exclamation mark. Finally, <varname>ConditionNull=</varname> may be used to add a constant condition check value to the unit. It takes a |