#!/bin/sh /etc/rc.common
#
# Copyright (C) 2016-2019, 2022 The slide-switch authors
# https://github.com/jefferyto/openwrt-slide-switch
#
# slide-switch is free software, licensed under the GNU General Public License v2.
#

START=94
STOP=10

start() {
	"/usr/sbin/slide-switch" --log=syslog init
}

stop() {
	"/usr/sbin/slide-switch" --log=syslog clean
}
