summaryrefslogtreecommitdiffstats
path: root/ipaplatform/rhel/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaplatform/rhel/constants.py')
-rw-r--r--ipaplatform/rhel/constants.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/ipaplatform/rhel/constants.py b/ipaplatform/rhel/constants.py
new file mode 100644
index 000000000..eaca48030
--- /dev/null
+++ b/ipaplatform/rhel/constants.py
@@ -0,0 +1,16 @@
+#
+# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
+#
+
+'''
+This RHEL base platform module exports platform related constants.
+'''
+
+# Fallback to default constant definitions
+from ipaplatform.redhat.constants import RedHatConstantsNamespace
+
+
+class RHELConstantsNamespace(RedHatConstantsNamespace):
+ pass
+
+constants = RHELConstantsNamespace()