forked from ports/contrib
9 lines
137 B
Bash
9 lines
137 B
Bash
#!/bin/sh -
|
|
|
|
getent group mail || groupadd -r mail
|
|
|
|
grep -q dma /etc/crontab ||
|
|
echo '*/15 * * * * exec dma -q' >> /etc/crontab
|
|
|
|
exit 0
|