diff --git a/roles/crowdsec/defaults/main.yml b/roles/crowdsec/defaults/main.yml index 473fac8..ac3c59e 100644 --- a/roles/crowdsec/defaults/main.yml +++ b/roles/crowdsec/defaults/main.yml @@ -1,11 +1,11 @@ --- # Version to install -cs_version: 1.0.13 +cs_version: 1.1.1 # URL of the archive cs_archive_url: https://github.com/crowdsecurity/crowdsec/releases/download/v{{ cs_version }}/crowdsec-release.tgz # Expected sha1 of the archive -cs_archive_sha1: 2e6003aa47d54d6b338edebb91d9fc597e6d1c32 +cs_archive_sha1: e128534e1fc5529441512451753ecb79c2cdcb85 # Crowdsec usually should run as root to be able to access all your logs # but in some situations, when all your logs are readable by a less privileged user, you can run diff --git a/roles/crowdsec/tasks/install.yml b/roles/crowdsec/tasks/install.yml index aff0bca..ec8fe06 100644 --- a/roles/crowdsec/tasks/install.yml +++ b/roles/crowdsec/tasks/install.yml @@ -22,7 +22,7 @@ remote_src: True - name: Install or upgrade crowdsec - command: ./wizard.sh --bin{{ cs_install_mode }} + command: ./wizard.sh --bin{{ cs_install_mode }} --force args: chdir: /tmp/crowdsec-v{{ cs_version }}/ notify: restart crowdsec