[SCM] CTDB repository - branch master updated - ctdb-1.13-332-ge2213db

Amitay Isaacs amitay at samba.org
Wed Oct 24 01:39:49 MDT 2012


The branch, master has been updated
       via  e2213db479129ce9c2b2fb88ec8c53cbd33d54b3 (commit)
      from  e94070de52232d6cefae0c6276df88b8fc380a4e (commit)

http://gitweb.samba.org/?p=ctdb.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit e2213db479129ce9c2b2fb88ec8c53cbd33d54b3
Author: Volker Lendecke <vl at samba.org>
Date:   Tue Oct 23 13:45:42 2012 +0200

    Avoid a bashism in 60.ganesha
    
    This file is #!/bin/sh. On sn-devel at least, with this /bin/sh the
    shell does not like == for string equality.

-----------------------------------------------------------------------

Summary of changes:
 config/events.d/60.ganesha |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/config/events.d/60.ganesha b/config/events.d/60.ganesha
index cee7792..a685013 100755
--- a/config/events.d/60.ganesha
+++ b/config/events.d/60.ganesha
@@ -28,7 +28,7 @@ service_reconfigure ()
 }
 loadconfig "nfs"
 
-[ "$NFS_SERVER_MODE" == "ganesha" ] || exit 0
+[ "$NFS_SERVER_MODE" = "ganesha" ] || exit 0
 
 ctdb_setup_service_state_dir
 


-- 
CTDB repository


More information about the samba-cvs mailing list