diff options
| author | Ade Lee <alee@redhat.com> | 2014-01-03 12:46:36 -0500 |
|---|---|---|
| committer | Ade Lee <alee@redhat.com> | 2014-01-08 17:35:06 -0500 |
| commit | 26f73fc5bb226c1d2f0a3d6f686c21c5d0cb24e3 (patch) | |
| tree | 3370c1112fe792625af918f248b861e136096152 /base/common/python/pki | |
| parent | cc831a6be57a868cd36d15335eb0f65e77779c55 (diff) | |
| download | pki-26f73fc5bb226c1d2f0a3d6f686c21c5d0cb24e3.tar.gz pki-26f73fc5bb226c1d2f0a3d6f686c21c5d0cb24e3.tar.xz pki-26f73fc5bb226c1d2f0a3d6f686c21c5d0cb24e3.zip | |
Debian: add init script functionality
The addtions in this patch will add start/stop/restart/status
functionality to operations, so that Debian systems can perform
these operations by calling these functions from an init script.
We also introduce a parameter in the configuration scripts that
can be used to determine if the system is a debian system. This
parameter is used to specify a system V init script instead of
a systemd script on a debian system, when the configuration
scriptlets start and stop a system.
Also source apparently does not work by default in debian. Used
dot (.) instead.
Diffstat (limited to 'base/common/python/pki')
| -rw-r--r-- | base/common/python/pki/system.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/base/common/python/pki/system.py b/base/common/python/pki/system.py index 9ea93677a..b530d5a10 100644 --- a/base/common/python/pki/system.py +++ b/base/common/python/pki/system.py @@ -21,6 +21,11 @@ import pki.encoder as encoder import xml.etree.ElementTree as ET +import os + +SYSTEM_TYPE="Fedora/RHEL" +if os.path.exists("/etc/debian_version"): + SYSTEM_TYPE="debian" class SecurityDomainInfo: |
