From 6856c60ba3beb69464dbd8b87e2fff6e0cc8be77 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 7 Jul 2010 12:32:56 +0000 Subject: [PATCH] * There is no "samba-control" job. svn path=/nixos/trunk/; revision=22509 --- modules/services/network-filesystems/samba.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/modules/services/network-filesystems/samba.nix b/modules/services/network-filesystems/samba.nix index 29c44d46e68..9a285aa7728 100644 --- a/modules/services/network-filesystems/samba.nix +++ b/modules/services/network-filesystems/samba.nix @@ -64,7 +64,7 @@ let description = "Samba Service daemon ${appName}"; startOn = "started samba"; - stopOn = "stopping samba-control"; + stopOn = "stopping samba"; exec = "${samba}/sbin/${appName} ${args}"; }; @@ -84,9 +84,8 @@ in enable = mkOption { default = false; description = " - Whether to enable the samba server. (to communicate with, and provide windows shares) - use start / stop samba-control to start/stop all daemons. - smbd and nmbd are not shutdown correctly yet. so just pkill them and restart those jobs. + Whether to enable Samba, which provides file and print + services to Windows clients through the SMB/CIFS protocol. "; }; @@ -146,15 +145,15 @@ in defaultShare = { enable = mkOption { - description = "Whether to share /home/smbd as 'default'"; + description = "Whether to share /home/smbd as 'default'."; default = false; }; writeable = mkOption { - description = "Whether to allow write access to default share"; + description = "Whether to allow write access to default share."; default = false; }; guest = mkOption { - description = "Whether to allow guest access to default share"; + description = "Whether to allow guest access to default share."; default = true; }; };