diff --git a/debian/rules b/debian/rules index 655af3dfe..ca465dd89 100755 --- a/debian/rules +++ b/debian/rules @@ -21,6 +21,7 @@ override_dh_auto_install: mkdir -p debian/crowdsec/etc/crowdsec/hub/ mkdir -p debian/crowdsec/usr/share/crowdsec/config mkdir -p debian/crowdsec/etc/crowdsec/console/ + mkdir -p debian/crowdsec/etc/crowdsec/context/ mkdir -p debian/crowdsec/usr/lib/crowdsec/plugins/ mkdir -p debian/crowdsec/etc/crowdsec/notifications/ diff --git a/windows/installer/product.wxs b/windows/installer/product.wxs index 0696da34b..9c3ed2000 100644 --- a/windows/installer/product.wxs +++ b/windows/installer/product.wxs @@ -59,6 +59,8 @@ + + diff --git a/wizard.sh b/wizard.sh index 34e302877..3b90a886b 100755 --- a/wizard.sh +++ b/wizard.sh @@ -29,6 +29,7 @@ CROWDSEC_LOG_FILE="/var/log/crowdsec.log" LAPI_LOG_FILE="/var/log/crowdsec_api.log" CROWDSEC_PLUGIN_DIR="${CROWDSEC_USR_DIR}/plugins" CROWDSEC_CONSOLE_DIR="${CROWDSEC_PATH}/console" +CROWDSEC_CONTEXT_DIR="${CROWDSEC_PATH}/context" CROWDSEC_BIN="./cmd/crowdsec/crowdsec" CSCLI_BIN="./cmd/crowdsec-cli/cscli" @@ -415,6 +416,7 @@ install_crowdsec() { mkdir -p "${CROWDSEC_CONFIG_PATH}/collections" || exit mkdir -p "${CROWDSEC_CONFIG_PATH}/patterns" || exit mkdir -p "${CROWDSEC_CONSOLE_DIR}" || exit + mkdir -p "${CROWDSEC_CONTEXT_DIR}" || exit #tmp mkdir -p /tmp/data