Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python3/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ install:
$(IPROG) -d $(DESTDIR)/usr/lib/systemd/system
$(IPROG) -d $(DESTDIR)$(EXTENSIONDIR)


$(IDATA) packages/inventory.py $(DESTDIR)$(SITE3_DIR)/
$(IDATA) packages/observer.py $(DESTDIR)$(SITE3_DIR)/

Expand All @@ -39,6 +38,8 @@ install:
$(IPROG) plugins/install-supp-pack $(DESTDIR)$(PLUGINDIR)
$(IPROG) plugins/echo.py $(DESTDIR)$(PLUGINDIR)/echo
$(IPROG) plugins/openvswitch-config-update $(DESTDIR)$(PLUGINDIR)
$(IPROG) plugins/extauth-hook $(DESTDIR)$(PLUGINDIR)
$(IPROG) plugins/extauth-hook-AD.py $(DESTDIR)$(PLUGINDIR)

$(IPROG) perfmon/perfmon $(DESTDIR)$(PLUGINDIR)
$(IDATA) perfmon/perfmon.service $(DESTDIR)/usr/lib/systemd/system/perfmon.service
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
#
# extauth-hook-AD.py
#
# This plugin manages the following configuration files for external authentication
# - /etc/nsswitch.conf
# - /etc/pam.d/sshd
# - /etc/pam.d/hcp_users
# - /etc/ssh/ssh_config
#
# This module can be called directly as a plugin. It handles
# Active Directory being enabled or disabled as the hosts external_auth_type,
# or subjects being added or removed while AD is the external_auth_type,
Expand All @@ -21,12 +27,6 @@
import XenAPIPlugin


# this plugin manage following configuration files for external auth
# - /etc/nsswitch.conf
# - /etc/pam.d/sshd
# - /etc/pam.d/hcp_users
# - /etc/ssh/ssh_config

# pylint: disable=too-few-public-methods
# pytype: disable=ignored-abstractmethod

Expand Down
File renamed without changes.
2 changes: 0 additions & 2 deletions scripts/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,6 @@ install:
mkdir -p $(DESTDIR)$(EXTENSIONDIR)
$(IPROG) extensions/pool_update.precheck $(DESTDIR)$(EXTENSIONDIR)
mkdir -p $(DESTDIR)$(PLUGINDIR)
$(IPROG) plugins/extauth-hook $(DESTDIR)$(PLUGINDIR)
$(IPROG) plugins/extauth-hook-AD.py $(DESTDIR)$(PLUGINDIR)
$(IPROG) plugins/firewall-port $(DESTDIR)$(PLUGINDIR)
mkdir -p $(DESTDIR)$(HOOKSDIR)/host-post-declare-dead
$(IPROG) 10resetvdis $(DESTDIR)$(HOOKSDIR)/host-post-declare-dead
Expand Down