Browse Source

Merge pull request #11132 from Andy2244/wsdd2-name_change_ksmbd

wsdd2: update for renamed smbd->ksmbd
lilik-openwrt-22.03
Hannu Nyman 5 years ago
committed by GitHub
parent
commit
a56402b90d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      net/wsdd2/Makefile
  2. +3
    -3
      net/wsdd2/files/wsdd2.init

+ 1
- 1
net/wsdd2/Makefile View File

@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=wsdd2
PKG_RELEASE:=3
PKG_RELEASE:=4
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/Andy2244/wsdd2.git


+ 3
- 3
net/wsdd2/files/wsdd2.init View File

@ -13,8 +13,8 @@ start_service() {
. /lib/functions/network.sh
if [ -e /etc/smbd/smb.conf ] && [ -e /etc/init.d/smbd ] && /etc/init.d/smbd running; then
SMB_CONF="/etc/smbd/smb.conf"
if [ -e /etc/ksmbd/smb.conf ] && [ -e /etc/init.d/ksmbd ] && /etc/init.d/ksmbd running; then
SMB_CONF="/etc/ksmbd/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 smbd is not running, can't start wsdd2!"
logger -p daemon.error -t 'wsdd2' "samba36/4 or ksmbd is not running, can't start wsdd2!"
exit 1
fi


Loading…
Cancel
Save