summaryrefslogtreecommitdiffstats
path: root/ipalib/load_plugins.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-08-13 01:03:32 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-08-13 01:03:32 +0000
commit13a3de7442570c47da2ccc76c15a0e6b0d9edea1 (patch)
tree25ae0988ce011fcac515b9e1613e4cd7b20fd9b0 /ipalib/load_plugins.py
parent8212be5c4bac78d7be8e6153b5c13bbb969d00f5 (diff)
downloadfreeipa-13a3de7442570c47da2ccc76c15a0e6b0d9edea1.tar.gz
freeipa-13a3de7442570c47da2ccc76c15a0e6b0d9edea1.tar.xz
freeipa-13a3de7442570c47da2ccc76c15a0e6b0d9edea1.zip
130: Renamed startup.py to load_plugins.py
Diffstat (limited to 'ipalib/load_plugins.py')
-rw-r--r--ipalib/load_plugins.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/ipalib/load_plugins.py b/ipalib/load_plugins.py
new file mode 100644
index 000000000..a477ba253
--- /dev/null
+++ b/ipalib/load_plugins.py
@@ -0,0 +1,27 @@
+# Authors:
+# Jason Gerard DeRose <jderose@redhat.com>
+#
+# Copyright (C) 2008 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; version 2 only
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+"""
+Importing this module causes the plugins to be loaded.
+
+This is not in __init__.py so that importing other ipalib or its other
+modules does not cause unnecessary side effects.
+"""
+
+import Plugins