Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (38ef946a5980831435bdab7fe0757fa2d7e50cac)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (38ef946a5980831435bdab7fe0757fa2d7e50cac)
  • Date: Mon, 8 Feb 2016 21:32:47 +0000

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

net/samba4/DETAILS | 1 +
net/samba4/HISTORY | 2 ++
net/samba4/init.d/samba | 41 +++++++++++++++++++++++++++++++++++++++++
3 files changed, 44 insertions(+)

New commits:
commit 38ef946a5980831435bdab7fe0757fa2d7e50cac
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

samba4: Add missing init.d/samba

diff --git a/net/samba4/DETAILS b/net/samba4/DETAILS
index 96dd29e..39f2937 100755
--- a/net/samba4/DETAILS
+++ b/net/samba4/DETAILS
@@ -8,6 +8,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-git
SOURCE_IGNORE=volatile
else
VERSION=4.3.4
+ PATCHLEVEL=1
SOURCE=${SPELL/4}-$VERSION.tar.gz

SOURCE_HASH=sha512:021351534a70cd351934d7f8bfc3c4e9ed9ea3f11f778f6f9d076b3368103f7f478ff1745cb257de0bf2ee38ae76ecba58e01a4db6cbcacbd8a4876e8e1b30f2
# SOURCE2=${SPELL/4}-${VERSION}.tar.asc
diff --git a/net/samba4/HISTORY b/net/samba4/HISTORY
index 3d8fc00..6d0bb29 100644
--- a/net/samba4/HISTORY
+++ b/net/samba4/HISTORY
@@ -1,7 +1,9 @@
2016-02-08 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated latest stable to 4.3.4
+ PATCHLEVEL=1
* CONFIGURE: SWAT is no longer disablable in configure
* BUILD: Uses waf_build
+ * init.d/samba: Add missing init

2015-01-02 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Update to latest stable 4.0 to 4.0.23
diff --git a/net/samba4/init.d/samba b/net/samba4/init.d/samba
new file mode 100755
index 0000000..277b9ba
--- /dev/null
+++ b/net/samba4/init.d/samba
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+PROGRAM=/usr/sbin/smbd
+RUNLEVEL=3
+NEEDS="+network +remote_fs"
+
+. /etc/init.d/smgl_init
+
+start() {
+ start_smbd
+ start_nmbd
+}
+
+start_smbd() {
+ echo "Starting smbd"
+ /usr/sbin/smbd
+ evaluate_retval
+}
+
+start_nmbd() {
+ echo "Starting nmbd"
+ /usr/sbin/nmbd
+ evaluate_retval
+}
+
+
+stop() {
+ stop_nmbd
+ stop_smbd
+}
+
+stop_smbd() {
+ echo "Stopping smbd"
+ killproc smbd
+}
+
+stop_nmbd() {
+ echo "Stopping nmbd"
+ killproc nmbd
+}
+



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (38ef946a5980831435bdab7fe0757fa2d7e50cac), Eric Sandall, 02/08/2016

Archive powered by MHonArc 2.6.24.

Top of Page