We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ed934e commit 51989caCopy full SHA for 51989ca
1 file changed
sysadmin_tools.sh
@@ -563,6 +563,10 @@ crowdsec_menu() {
563
# Allow incoming connections on the new SSH port
564
run_command ufw allow $new_port2
565
run_command ufw allow 8081
566
+ # Check if the host is a Proxmox host
567
+ if dpkg -l | grep -q pve-manager; then
568
+ run_command ufw allow 8006
569
+ fi
570
run_command apt-get install curl -y
571
run_command curl -s https://packagecloud.io/install/repositories/crowdsec/crowdsec/script.deb.sh | bash
572
run_command apt-get install crowdsec -y
0 commit comments