mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
12 lines
145 B
Bash
12 lines
145 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2011 OpenWrt.org
|
|
|
|
START=61
|
|
|
|
start() {
|
|
service_start /bin/nmbd -D
|
|
}
|
|
|
|
stop() {
|
|
service_stop /bin/nmbd
|
|
}
|