aboutsummaryrefslogtreecommitdiff
path: root/bin/lord
diff options
context:
space:
mode:
Diffstat (limited to 'bin/lord')
-rwxr-xr-xbin/lord37
1 files changed, 37 insertions, 0 deletions
diff --git a/bin/lord b/bin/lord
new file mode 100755
index 0000000..128c672
--- /dev/null
+++ b/bin/lord
@@ -0,0 +1,37 @@
+#!/usr/bin/env python
+################################################################################
+# overlord - A UTILITY TO SELECT AND UPDATE GENTOO OVERLAYS
+################################################################################
+# Distributed under the terms of the GNU General Public License v2
+#
+# Copyright:
+# (c) 2005 Gunnar Wrobel
+# (c) 2009 Sebastian Pipping
+# (c) 2011 Brian Dolbec
+# Distributed under the terms of the GNU General Public License v2
+#
+# Author(s):
+# Gunnar Wrobel <wrobel@gentoo.org>
+# Sebastian Pipping <sebastian@pipping.org>
+# Brian Dolbec <brian.dolbec@gmail.com>
+#
+
+__version__ = "$Id$"
+
+#===============================================================================
+#
+# Dependencies
+#
+#-------------------------------------------------------------------------------
+
+from overlord.config import ArgsParser
+from overlord.cli import Main
+
+#===============================================================================
+#
+# MAIN
+#
+#-------------------------------------------------------------------------------
+
+main = Main(ArgsParser())
+main()