From a487e42d3fb71ceb3128fb9a2055a5586c4ed851 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Thu, 2 Jul 2015 12:38:43 +0200 Subject: ipaplatform: Add constants submodule Introduce a ipaplatform/constants.py file to store platform related constants, which are not paths. Reviewed-By: Martin Basti Reviewed-By: Petr Spacek --- ipaplatform/rhel/constants.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ipaplatform/rhel/constants.py (limited to 'ipaplatform/rhel') 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() -- cgit