Changeset 11207

Show
Ignore:
Timestamp:
08/15/08 14:21:24 (5 months ago)
Author:
/C=ES/O=Warp Networks S.L./CN=juruen@…
Message:

Do not use shares that don't have permission for any user or group

Location:
trunk/client/samba
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/client/samba/ChangeLog

    r11196 r11207  
    55        + Mark shares strings to translate 
    66        + Use eBox OID number in LDAP schemas 
     7        + Do not use shares that don't have permission for any user or group 
    780.11.103 
    89        + Bugfix. Add and use EBox::Samba::Types::Select to avoid  
  • trunk/client/samba/src/EBox/Samba.pm

    r10576 r11207  
    280280        } 
    281281         
     282        next unless (@readOnly or @readWrite or @administrators);        
     283 
    282284        $shareConf->{'readOnly'} = join (', ', @readOnly); 
    283285        $shareConf->{'readWrite'} = join (', ', @readWrite); 
     
    286288                                                 @readWrite, 
    287289                                                 @administrators); 
     290 
    288291        push (@shares, $shareConf); 
    289292    }