summarylogtreecommitdiffstats
path: root/10-ddclient
blob: 58bdf161eb7a611072b9b764e3b97110651859ec (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
case "$2" in
    up)
        systemctl start ddclient.service
    ;;
    down)
        systemctl stop ddclient.service
    ;;
esac