mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
9 lines
178 B
Bash
9 lines
178 B
Bash
#!/bin/bash
|
|
|
|
backup_dir="$1/conf/dkim"
|
|
|
|
cp -a $backup_dir/etc/dkim/. /etc/dkim
|
|
|
|
chown -R root:root /etc/dkim
|
|
chown _rspamd:root /etc/dkim
|
|
chown _rspamd:root /etc/dkim/*.mail.key
|