You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--- a/src/lxc/tools/lxc-checkconfig.in
|
|
+++ b/src/lxc/tools/lxc-checkconfig.in
|
|
@@ -3,6 +3,17 @@
|
|
# Allow environment variables to override config
|
|
: ${CONFIG:=/proc/config.gz}
|
|
: ${MODNAME:=configs}
|
|
+: ${ZGREP:=zgrep}
|
|
+: ${GUNZIP:=gunzip}
|
|
+
|
|
+if [ -z $(which $ZGREP) ] && ! [ -z $(which $GUNZIP) ] && [ -x $(which $GUNZIP) ] && [ -f $CONFIG ] && [ "$CONFIG" == "/proc/config.gz" ] ; then
|
|
+
|
|
+ CONFIG_NEW="/tmp/config-$(uname -r)"
|
|
+ $GUNZIP -c $CONFIG > $CONFIG_NEW
|
|
+ CONFIG=$CONFIG_NEW
|
|
+
|
|
+ GREP=grep
|
|
+fi
|
|
|
|
CAT="cat"
|
|
|