MrGeneration / Debian / Ubuntu Upgrade

0 beğeniler
0 çatallar
7 files
Son aktif 1723306495
This gist provides contextual copy paste options for Distribution upgrades with installed Zammad and PostgreSQL for Debian (10, 11, 12) and Ubuntu (18, 20, 22). Video context to this: https://youtu.be/IXp4VWU27wo
1 systemctl disable zammad --now
2 apt-mark hold zammad
3 apt update
4 apt upgrade
5
6 # Continue with step 2 or 3 depending on your current state

MrGeneration / Zammad 6.2: Enforce SSL-Verification

0 beğeniler
0 çatallar
4 files
Son aktif 1712838313
With Zammad 6.2 existing configurations for Email channels and i-doit by default have ssl verification disabled. This code snippet activates SSL verification. This change ONLY affects existing, update installations.
1 # If you've configured "SSL-Verification: true" on previous Zammad-Versions, this setting is going to be a problem.
2 # Below turns off SSL verification for all LDAP-Sources. You then can login again and have the time needed to fix the configuration.
3
4 LdapSource.all.each do |l|
5 l.preferences.merge!("ssl_verify"=>false)
6 l.save
7 end;
Newer Older