diff options
author | Martin Kelly <mkelly@xevo.com> | 2017-05-04 12:39:11 -0700 |
---|---|---|
committer | Walt Miner <walt@linux.com> | 2017-05-05 18:43:04 +0000 |
commit | ea0a1f935acfb2113aeb476f82c1cc7979684f5c (patch) | |
tree | 6c07e4c92f87a259a12e5324cc8e28d6b55e7a3e | |
parent | 71d255fa5ac2011b9a6f7e49c5a8d951df670277 (diff) |
agl-postints: remove unneeded Glob
We're using ConditionPathExistsGlob on a straight filepath without wildcards.
Just use ConditionPathExists instead.
Change-Id: I6f9743beffa1c529013a084758a8589b380a0ba9
Signed-off-by: Martin Kelly <mkelly@xevo.com>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/9311
Reviewed-by: José Bollo <jobol@nonadev.net>
Tested-by: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
ci-image-build: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
Reviewed-by: Stéphane Desneux <stephane.desneux@iot.bzh>
Reviewed-by: Walt Miner <walt@linux.com>
-rw-r--r-- | meta-agl/recipes-devtools/run-agl-postinsts/run-agl-postinsts/run-agl-postinsts.service | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-agl/recipes-devtools/run-agl-postinsts/run-agl-postinsts/run-agl-postinsts.service b/meta-agl/recipes-devtools/run-agl-postinsts/run-agl-postinsts/run-agl-postinsts.service index d1b506308..a80b16002 100644 --- a/meta-agl/recipes-devtools/run-agl-postinsts/run-agl-postinsts/run-agl-postinsts.service +++ b/meta-agl/recipes-devtools/run-agl-postinsts/run-agl-postinsts/run-agl-postinsts.service @@ -2,7 +2,7 @@ Description=Run pending agl postinsts DefaultDependencies=no After=#SYSTEMD_SERVICE_AFTER# -ConditionPathExistsGlob=#SYSCONFDIR#/agl-postinsts +ConditionPathExists=#SYSCONFDIR#/agl-postinsts [Service] Type=oneshot |