You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
322 B
Bash

#!/bin/sh /etc/rc.common
START=18
USE_PROCD=1
start_service(){
/usr/bin/station_quota.sh --event start
}
stop_service(){
/usr/bin/station_quota.sh --event stop
}
reload_service(){
/usr/bin/station_quota.sh --event reload
}
service_triggers(){
procd_add_reload_trigger station_quota
}