diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2017-02-12 12:07:02 +0300 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2017-02-12 12:28:22 +0300 |
commit | 1e3ddaff1aa465884fd094197290b8fb62407637 (patch) | |
tree | bb901b617a4398dbf4853c3c65ee23e790978cf8 | |
parent | dev-libs/xalan-c: Drop has_m64 usage. (diff) | |
download | gentoo-1e3ddaff1aa465884fd094197290b8fb62407637.tar.gz gentoo-1e3ddaff1aa465884fd094197290b8fb62407637.tar.bz2 gentoo-1e3ddaff1aa465884fd094197290b8fb62407637.zip |
app-admin/clsync: remove bashisms
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
-rw-r--r-- | app-admin/clsync/files/clsync.initd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app-admin/clsync/files/clsync.initd b/app-admin/clsync/files/clsync.initd index 011163bbc08d..bf9e55e5b0af 100644 --- a/app-admin/clsync/files/clsync.initd +++ b/app-admin/clsync/files/clsync.initd @@ -1,11 +1,11 @@ #!/sbin/openrc-run -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -[[ -n "${CLSYNC_CONF}" ]] && conffile="--config-file ${CLSYNC_CONF}" -[[ -n "${CLSYNC_NICE}" ]] && cmd_nice="--nice ${CLSYNC_NICE}" -[[ -n "${CLSYNC_IONICE}" ]] && cmd_ionice="--ionice ${CLSYNC_IONICE}" +[ -n "${CLSYNC_CONF}" ] && conffile="--config-file ${CLSYNC_CONF}" +[ -n "${CLSYNC_NICE}" ] && cmd_nice="--nice ${CLSYNC_NICE}" +[ -n "${CLSYNC_IONICE}" ] && cmd_ionice="--ionice ${CLSYNC_IONICE}" command="/usr/bin/clsync" pidfile="/var/run/${SVCNAME}.pid" |