mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 19:14:30 +04:00
5 lines
133 B
Bash
5 lines
133 B
Bash
#!/bin/sh
|
|
|
|
grep -q '/usr/bin/acme' /etc/crontabs/root 2>/dev/null && exit 0
|
|
echo "0 0 * * * /usr/bin/acme get" >> /etc/crontabs/root
|