From: W. Trevor King Date: Fri, 21 Feb 2014 02:29:58 +0000 (-0800) Subject: contrib/openrc/init.d/package-cache: Add PC_OPTS X-Git-Tag: v0.1~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6bc0e6dc56d2c382b65ead7cd502c83713acd837;p=package-cache.git contrib/openrc/init.d/package-cache: Add PC_OPTS You can use this to tweak the logging: $ cat /etc/conf.d/package-cache PC_OPTS="-vvv" --- diff --git a/contrib/openrc/init.d/package-cache b/contrib/openrc/init.d/package-cache index 49189ce..d8a9a97 100755 --- a/contrib/openrc/init.d/package-cache +++ b/contrib/openrc/init.d/package-cache @@ -36,7 +36,8 @@ start() { --host "${HOST}" \ --port "${PORT}" \ "${SOURCE_OPTS[@]}" \ - --cache "${CACHE_DIR}" + --cache "${CACHE_DIR}" \ + ${PC_OPTS:+${PC_OPTS}} eend $? }