summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorDavid Mulder <dmulder@suse.com>2020-11-03 10:45:45 -0700
committerJeremy Allison <jra@samba.org>2020-12-19 08:11:50 +0000
commit9b44f7a71ec7772fbb47167e0ba4d5c51397cfad (patch)
tree2e0844b0748d71e3dab9ad96fa48b3e6ffd4339c /source4
parent932af62eade70714ca7351738b936123c5345fd0 (diff)
downloadsamba-9b44f7a71ec7772fbb47167e0ba4d5c51397cfad.tar.gz
gpo: Apply Group Policy Sudo Rights from VGP
This adds a Group Policy extension which applies Sudo rights set by Vintela Group Policy in the SYSVOL. Signed-off-by: David Mulder <dmulder@suse.com> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Sat Dec 19 08:11:50 UTC 2020 on sn-devel-184
Diffstat (limited to 'source4')
-rwxr-xr-xsource4/scripting/bin/samba-gpupdate2
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/scripting/bin/samba-gpupdate b/source4/scripting/bin/samba-gpupdate
index dfbb1901457..85300e15655 100755
--- a/source4/scripting/bin/samba-gpupdate
+++ b/source4/scripting/bin/samba-gpupdate
@@ -34,6 +34,7 @@ from samba.gp_sec_ext import gp_krb_ext, gp_access_ext
from samba.gp_ext_loader import get_gp_client_side_extensions
from samba.gp_scripts_ext import gp_scripts_ext
from samba.gp_sudoers_ext import gp_sudoers_ext
+from samba.vgp_sudoers_ext import vgp_sudoers_ext
from samba.gp_smb_conf_ext import gp_smb_conf_ext
from samba.gp_msgs_ext import gp_msgs_ext
import logging
@@ -89,6 +90,7 @@ if __name__ == "__main__":
gp_extensions.append(gp_krb_ext)
gp_extensions.append(gp_scripts_ext)
gp_extensions.append(gp_sudoers_ext)
+ gp_extensions.append(vgp_sudoers_ext)
gp_extensions.append(gp_smb_conf_ext)
gp_extensions.append(gp_msgs_ext)
gp_extensions.extend(machine_exts)