contrib/dma/post-install

9 lines
137 B
Plaintext
Raw Normal View History

2020-12-30 22:27:06 +01:00
#!/bin/sh -
getent group mail || groupadd -r mail
grep -q dma /etc/crontab ||
echo '*/15 * * * * exec dma -q' >> /etc/crontab
exit 0