This commit is contained in:
Thibault bui Koechlin 2020-05-26 18:18:32 +02:00
parent 8e2c9bc705
commit 3149a96ab8

View file

@ -295,16 +295,10 @@ install_crowdsec() {
}
update_bins() {
log_info "Saving api credentials"
${CSCLI_BIN_INSTALLED} api credentials > ${BACKUP_DIR}/api-credentials.back || log_err "Unable to save credentials"
cat ${CROWDSEC_CONFIG_PATH}/api.yaml
log_info "Only upgrading binaries"
delete_bins
install_bins
log_info "Upgrade finished"
echo "#restored credentials" >> ${CROWDSEC_CONFIG_PATH}/api.yaml || log_err "unable to write to api file"
cat ${BACKUP_DIR}/api-credentials.back >> ${CROWDSEC_CONFIG_PATH}/api.yaml || log_err "unable to write to api file"
systemctl restart crowdsec
}