Workarounds: Difference between revisions

From wiki
Add roundcube/fail2ban
Added workaround for laptop_mode suspend
Line 11: Line 11:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810287
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810287


Path to log overridden in <code>/etc/fail2ban/jail.d/roundcube-auth.conf</code>  
Path to log overridden in <code>/etc/fail2ban/jail.d/roundcube-auth.conf</code>
 
== laptop_mode not reapplied on resume from suspend ==
Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=798777
 
Created file <code>/lib/systemd/system-sleep/laptop-mode.sh</code> <syntaxhighlight lang="shell">
#!/bin/sh
 
case "$1" in
  pre )
    ;;
  post )
    sleep 5 && /usr/sbin/laptop_mode force
    ;;
esac
</syntaxhighlight>File is not in <code>/etc</code> due to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787711
[[Category:TODO]]
[[Category:TODO]]

Revision as of 07:26, 8 November 2016

Digikam

Crash when using bracketing fusion tool

https://bugs.kde.org/show_bug.cgi?id=354364

$ cd ~/.kde/share/apps/digikam
$ mkdir toolbar
$ cp /usr/share/icons/oxygen/22x22/animations/process-working.png toolbar

https://bugs.kde.org/show_bug.cgi?id=354364#c29

Roundcube/Fail2ban

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810287

Path to log overridden in /etc/fail2ban/jail.d/roundcube-auth.conf

laptop_mode not reapplied on resume from suspend

Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=798777

Created file /lib/systemd/system-sleep/laptop-mode.sh

#!/bin/sh

case "$1" in
  pre )
    ;;
  post )
    sleep 5 && /usr/sbin/laptop_mode force
    ;;
esac

File is not in /etc due to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787711