mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-10 20:05:55 +02:00
Improve post-installation message (#3407)
This commit is contained in:
parent
013fd8b198
commit
29b2252b50
2 changed files with 24 additions and 8 deletions
16
debian/postinst
vendored
16
debian/postinst
vendored
|
@ -89,10 +89,18 @@ if [ "$1" = configure ]; then
|
|||
echo "This port is configured through /etc/crowdsec/config.yaml and /etc/crowdsec/local_api_credentials.yaml"
|
||||
fi
|
||||
|
||||
echo "Get started with CrowdSec:"
|
||||
echo " * Detailed guides are available in our documentation: https://docs.crowdsec.net"
|
||||
echo " * Configuration items created by the community can be found at the Hub: https://hub.crowdsec.net"
|
||||
echo " * Gain insights into your use of CrowdSec with the help of the console https://app.crowdsec.net"
|
||||
GREEN='\033[0;32m'
|
||||
BOLD='\033[1m'
|
||||
RESET='\033[0m'
|
||||
|
||||
echo -e "${BOLD}Get started with CrowdSec:${RESET}"
|
||||
echo -e " * Go further by following our ${BOLD}post installation steps${RESET} : ${GREEN}${BOLD}https://docs.crowdsec.net/u/getting_started/next_steps${RESET}"
|
||||
echo -e "===================================================================================================================="
|
||||
echo -e " * Install a ${BOLD}remediation component${RESET} to block attackers: ${GREEN}${BOLD}https://docs.crowdsec.net/u/bouncers/intro${RESET}"
|
||||
echo -e "===================================================================================================================="
|
||||
echo -e " * Find more ${BOLD}collections${RESET}, ${BOLD}parsers${RESET} and ${BOLD}scenarios${RESET} created by the community with the Hub: ${GREEN}${BOLD}https://hub.crowdsec.net${RESET}"
|
||||
echo -e "===================================================================================================================="
|
||||
echo -e " * Subscribe to ${BOLD}additional blocklists${RESET}, ${BOLD}visualize${RESET} your alerts and more with the console: ${GREEN}${BOLD}https://app.crowdsec.net${RESET}"
|
||||
fi
|
||||
|
||||
echo "You can always run the configuration again interactively by using '/usr/share/crowdsec/wizard.sh -c'"
|
||||
|
|
|
@ -178,10 +178,18 @@ if [ $1 == 1 ]; then
|
|||
cscli hub update
|
||||
CSCLI_BIN_INSTALLED="/usr/bin/cscli" SILENT=true install_collection
|
||||
|
||||
echo "Get started with CrowdSec:"
|
||||
echo " * Detailed guides are available in our documentation: https://docs.crowdsec.net"
|
||||
echo " * Configuration items created by the community can be found at the Hub: https://hub.crowdsec.net"
|
||||
echo " * Gain insights into your use of CrowdSec with the help of the console https://app.crowdsec.net"
|
||||
GREEN='\033[0;32m'
|
||||
BOLD='\033[1m'
|
||||
RESET='\033[0m'
|
||||
|
||||
echo -e "${BOLD}Get started with CrowdSec:${RESET}"
|
||||
echo -e " * Go further by following our ${BOLD}post installation steps${RESET} : ${GREEN}${BOLD}https://docs.crowdsec.net/u/getting_started/next_steps${RESET}"
|
||||
echo -e "===================================================================================================================="
|
||||
echo -e " * Install a ${BOLD}remediation component${RESET} to block attackers: ${GREEN}${BOLD}https://docs.crowdsec.net/u/bouncers/intro${RESET}"
|
||||
echo -e "===================================================================================================================="
|
||||
echo -e " * Find more ${BOLD}collections${RESET}, ${BOLD}parsers${RESET} and ${BOLD}scenarios${RESET} created by the community with the Hub: ${GREEN}${BOLD}https://hub.crowdsec.net${RESET}"
|
||||
echo -e "===================================================================================================================="
|
||||
echo -e " * Subscribe to ${BOLD}additional blocklists${RESET}, ${BOLD}visualize${RESET} your alerts and more with the console: ${GREEN}${BOLD}https://app.crowdsec.net${RESET}"
|
||||
fi
|
||||
|
||||
%systemd_post %{name}.service
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue