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