From fbd991aaa2c1e789d6589d9d9c59198db4bb21e8 Mon Sep 17 00:00:00 2001 From: Andy Walsh Date: Tue, 31 Dec 2019 15:16:07 +0100 Subject: [PATCH] wsdd2: update init for renamed cifsd->smbd * update init for renamed cifsd->smbd Signed-off-by: Andy Walsh --- net/wsdd2/Makefile | 2 +- net/wsdd2/files/wsdd2.init | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/net/wsdd2/Makefile b/net/wsdd2/Makefile index 24c3f0e88..550596d05 100644 --- a/net/wsdd2/Makefile +++ b/net/wsdd2/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wsdd2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/Andy2244/wsdd2.git diff --git a/net/wsdd2/files/wsdd2.init b/net/wsdd2/files/wsdd2.init index 4ade08279..52fcea2e1 100644 --- a/net/wsdd2/files/wsdd2.init +++ b/net/wsdd2/files/wsdd2.init @@ -13,8 +13,8 @@ BI_PARM="" start_service() { - if [ -e /etc/cifs/smb.conf ] && [ -e /etc/init.d/cifsd ] && /etc/init.d/cifsd running; then - SMB_CONF="/etc/cifs/smb.conf" + if [ -e /etc/smbd/smb.conf ] && [ -e /etc/init.d/smbd ] && /etc/init.d/smbd running; then + SMB_CONF="/etc/smbd/smb.conf" fi if [ -e /etc/samba/smb.conf ]; then @@ -26,7 +26,7 @@ start_service() { fi if [ -z "$SMB_CONF" ]; then - logger -p daemon.error -t 'wsdd2' "samba36/4 or cifsd is not running, can't start wsdd2!" + logger -p daemon.error -t 'wsdd2' "samba36/4 or smbd is not running, can't start wsdd2!" exit 1 fi @@ -82,5 +82,5 @@ start_service() { service_triggers() { PROCD_RELOAD_DELAY=1000 - procd_add_reload_trigger "dhcp" "system" "samba" "samba4" "cifsd" + procd_add_reload_trigger "dhcp" "system" "samba" "samba4" "smbd" }