aboutsummaryrefslogtreecommitdiff
path: root/manifests/server/ads.pp
diff options
context:
space:
mode:
authorLebedev Vadim <abraham1901@gmail.com>2013-03-18 18:55:58 +0400
committerAdam Jahn <ajjahn@gmail.com>2013-03-19 21:14:30 -0400
commit32f1dc699c77ae665d8c8e39d8d9c2c3fb497df9 (patch)
tree6b2edbb451b76b18c3bbc3a49d591e91e24e2b06 /manifests/server/ads.pp
parentd612151695cb9121d4aebcdb8a39c0ee87f7c612 (diff)
downloadpuppet-samba-32f1dc699c77ae665d8c8e39d8d9c2c3fb497df9.tar.gz
puppet-samba-32f1dc699c77ae665d8c8e39d8d9c2c3fb497df9.tar.bz2
Add implementation join Samba server into Active Directory
Conflicts: manifests/server/share.pp
Diffstat (limited to 'manifests/server/ads.pp')
-rw-r--r--manifests/server/ads.pp116
1 files changed, 116 insertions, 0 deletions
diff --git a/manifests/server/ads.pp b/manifests/server/ads.pp
new file mode 100644
index 0000000..1f8e602
--- /dev/null
+++ b/manifests/server/ads.pp
@@ -0,0 +1,116 @@
+# This module join samba server to Active Dirctory
+#
+# Copyright (c) 2013 Lebedev Vadim, abraham1901 at g mail dot c o m
+# Licensed under the MIT License, http://opensource.org/licenses/MIT
+
+class samba::server::ads($ensure = present,
+ $winbind_acct = 'admin',
+ $winbind_pass = 'SecretPass',
+ $realm = 'domain.com',
+ $winbind_uid = '10000-20000',
+ $winbind_gid = '10000-20000',
+ $winbind_enum_groups = 'yes',
+ $winbind_enum_users = 'yes',
+ $winbind_use_default_domain = 'yes',
+ $nsswitch = false,
+ $acl_group_control = 'yes',
+ $map_acl_inherit = 'yes',
+ $inherit_acls = 'yes',
+ $store_dos_attributes = 'yes',
+ $ea_support = 'yes',
+ $dos_filemode = 'yes',
+ $acl_check_permissions = false,
+ $map_system = 'no',
+ $map_archive = 'no',
+ $map_readonly = 'no',
+ $target_ou = 'Nix_Mashine') {
+
+ package{
+ 'krb5-user': ensure => installed;
+ 'winbind': ensure => installed;
+ 'expect': ensure => installed;
+ }
+
+ include samba::server::config
+ include samba::server::winbind
+
+ $signal = 'samba::server::winbind'
+
+ set_samba_option {
+ 'realm': value => $realm,
+ signal => $signal;
+ 'winbind uid': value => $winbind_uid,
+ signal => $signal;
+ 'winbind gid': value => $winbind_gid,
+ signal => $signal;
+ 'winbind enum groups': value => $winbind_enum_groups,
+ signal => $signal;
+ 'winbind enum users': value => $winbind_enum_users,
+ signal => $signal;
+ 'winbind use default domain': value => $winbind_use_default_domain,
+ signal => $signal;
+ 'acl group control': value => $acl_group_control;
+ 'map acl inherit': value => $map_acl_inherit;
+ 'inherit acls': value => $inherit_acls;
+ 'store dos attributes': value => $store_dos_attributes;
+ 'ea support': value => $ea_support;
+ 'dos filemode': value => $dos_filemode;
+ 'acl check permissions': value => $acl_check_permissions;
+ 'map system': value => $map_system;
+ 'map archive': value => $map_archive;
+ 'map readonly': value => $map_readonly;
+ }
+
+ $nss_file='etc/nsswitch.conf'
+
+ $changes=$nsswitch ? {
+ true => [
+ "set database[. = 'passwd']/service[1] compat",
+ "set database[. = 'passwd']/service[2] winbind",
+ "set database[. = 'group']/service[1] compat",
+ "set database[. = 'group']/service[2] winbind",
+ ],
+ false => [
+ "rm /files/${nss_file}/database[. = 'passwd']/service[. = 'winbind']",
+ "rm /files/${nss_file}/database[. = 'group']/service[. = 'winbind']",
+ ]
+ }
+
+ augeas { 'nsswitch':
+ context => "/files/${nss_file}",
+ changes => $changes
+ }
+
+ file {'verify_active_directory':
+ # this script returns 0 if join is intact
+ path => '/sbin/verify_active_directory',
+ owner => root,
+ group => root,
+ mode => "0755",
+ content => template("${module_name}/verify_active_directory.erb"),
+ require => [ Package['krb5-user', 'winbind', 'expect'],
+ Augeas['samba-realm', 'samba-security', 'samba-winbind enum users',
+ 'samba-winbind enum groups', 'samba-winbind uid', 'samba-winbind gid',
+ 'samba-winbind use default domain'] ],
+ }
+
+ file {'configure_active_directory':
+ # this script joins or leaves a domain
+ path => '/sbin/configure_active_directory',
+ owner => root,
+ group => root,
+ mode => "0755",
+ content => template("${module_name}/configure_active_directory.erb"),
+ require => [ Package['krb5-user', 'winbind', 'expect'],
+ Augeas['samba-realm', 'samba-security', 'samba-winbind enum users',
+ 'samba-winbind enum groups', 'samba-winbind uid', 'samba-winbind gid',
+ 'samba-winbind use default domain'] ],
+ }
+
+ exec {'join-active-directory':
+ # join the domain configured in samba.conf
+ command => '/sbin/configure_active_directory -j',
+ unless => '/sbin/verify_active_directory',
+ require => [ File['configure_active_directory', 'verify_active_directory'], Class['samba::server::winbind'] ],
+ }
+}