Author: eelco
Date: 2010-07-07 12:32:56 +0000 (Wed, 07 Jul 2010)
New Revision: 22509

You can view the changes in this commit at:
   https://svn.nixos.org/viewvc/nix?rev=22509&view=rev

Modified:
   nixos/trunk/modules/services/network-filesystems/samba.nix

Log:
* There is no "samba-control" job.


Changes:

Modified: nixos/trunk/modules/services/network-filesystems/samba.nix
===================================================================
--- nixos/trunk/modules/services/network-filesystems/samba.nix  2010-07-07 
12:11:29 UTC (rev 22508)
+++ nixos/trunk/modules/services/network-filesystems/samba.nix  2010-07-07 
12:32:56 UTC (rev 22509)
@@ -64,7 +64,7 @@
       description = "Samba Service daemon ${appName}";
 
       startOn = "started samba";
-      stopOn = "stopping samba-control";
+      stopOn = "stopping samba";
 
       exec = "${samba}/sbin/${appName} ${args}";
     };
@@ -84,9 +84,8 @@
       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 @@
 
       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;
        };
       };

_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to