On 24.12.2016 09:31, jdd wrote:
I still have to look to see if scrubbing is already configured by yast as it should be. IMHO it's a very important part of the install, specially with old ordinary hdd - also one of the reason I used three disk + a backup
On my 13.2 server there is a cronjob coming from the mdadm package: cat /etc/cron.d/mdadm # # cron.d/mdadm - regular redundancy checks # # Start checking each month early in the morning. # Continue each day until all done PATH=/sbin:/usr/sbin:/bin:/usr/bin 0 4 * * 0 root source /etc/sysconfig/mdadm; [ -n "$MDADM_CHECK_DURATION" -a -x /usr/share/mdadm/mdcheck -a $(date +\%d) -le 7 ] && /usr/share/mdadm/mdcheck --duration "$MDADM_CHECK_DURATION" 0 4 * * 1-6 root source /etc/sysconfig/mdadm; [ -n "$MDADM_CHECK_DURATION" -a -x /usr/share/mdadm/mdcheck ] && /usr/share/mdadm/mdcheck --continue --duration "$MDADM_CHECK_DURATION" which does the job. Unfortunately this job is missing in 42.2. This is a bug, since i cannot see a raplacement for this (no systemd timer). I opened a bug report.