diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2016-03-18 14:01:37 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2016-03-18 14:01:37 -0500 |
commit | ebaee119616826f9699a77c8f8c290335c08db58 (patch) | |
tree | 32d7a7e3978d0f678223ed4fd0127d24b8ff5e35 /app-admin | |
parent | sys-kernel/gentoo-sources: Linux patch 4.1.20 (diff) | |
download | gentoo-ebaee119616826f9699a77c8f8c290335c08db58.tar.gz gentoo-ebaee119616826f9699a77c8f8c290335c08db58.tar.bz2 gentoo-ebaee119616826f9699a77c8f8c290335c08db58.zip |
app-admin/puppetdb: fix -a in init script
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/puppetdb/files/puppetdb.initd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-admin/puppetdb/files/puppetdb.initd b/app-admin/puppetdb/files/puppetdb.initd index 032c8852cf1b..dc7bbced973a 100644 --- a/app-admin/puppetdb/files/puppetdb.initd +++ b/app-admin/puppetdb/files/puppetdb.initd @@ -17,7 +17,7 @@ checkconfig() { eerror "Missing INSTALL_DIR." eend 1 fi - if [ ! -a $BOOTSTRAP_CONFIG ]; then + if [ ! -e $BOOTSTRAP_CONFIG ]; then eerror "Missing BOOTSTRAP_CONFIG." eend 1 fi |