From 6bc0e6dc56d2c382b65ead7cd502c83713acd837 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 20 Feb 2014 18:29:58 -0800 Subject: [PATCH] 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" --- contrib/openrc/init.d/package-cache | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 $? } -- 2.26.2