summaryrefslogtreecommitdiffstats
path: root/pki/base/deploy/src/scriptlets
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/deploy/src/scriptlets')
-rw-r--r--pki/base/deploy/src/scriptlets/instance.py105
-rw-r--r--pki/base/deploy/src/scriptlets/pkiconfig.py95
-rw-r--r--pki/base/deploy/src/scriptlets/pkihelper.py212
-rw-r--r--pki/base/deploy/src/scriptlets/pkilogging.py46
-rw-r--r--pki/base/deploy/src/scriptlets/pkimessages.py98
-rw-r--r--pki/base/deploy/src/scriptlets/pkiscriptlet.py47
-rw-r--r--pki/base/deploy/src/scriptlets/security_databases.py78
7 files changed, 0 insertions, 681 deletions
diff --git a/pki/base/deploy/src/scriptlets/instance.py b/pki/base/deploy/src/scriptlets/instance.py
deleted file mode 100644
index 636f63b27..000000000
--- a/pki/base/deploy/src/scriptlets/instance.py
+++ /dev/null
@@ -1,105 +0,0 @@
-#!/usr/bin/python -t
-# Authors:
-# Matthew Harmsen <mharmsen@redhat.com>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Copyright (C) 2011 Red Hat, Inc.
-# All rights reserved.
-#
-
-# System Imports
-import os
-import grp
-import pwd
-
-# PKI Deployment Imports
-import pkiconfig
-import pkimessages as log
-import pkiscriptlet
-
-
-# PKI Deployment Instance Population Classes
-class PkiScriptlet(pkiscriptlet.AbstractBasePkiScriptlet):
- rv = 0
- pki_path = pkiconfig.pki_root_prefix +\
- pkiconfig.pki_common_dict['pki_instance_root']
- pki_instance_path = pki_path + "/" +\
- pkiconfig.pki_common_dict['pki_instance_name']
- pki_subsystem_path = pki_instance_path + "/" +\
- pkiconfig.pki_subsystem_dict['pki_subsystem'].lower()
-
- def spawn(self):
- if not os.path.exists(self.pki_subsystem_path):
- pkiconfig.pki_log.info(log.INSTANCE_SPAWN_1, __name__)
- pkiconfig.pki_log.info(log.INSTANCE_SPAWN_MKDIR_1,
- self.pki_subsystem_path)
- if not pkiconfig.pki_dry_run_flag:
- try:
- pki_gid = grp.getgrnam(
- pkiconfig.pki_common_dict['pki_group'])[2]
- pki_uid = pwd.getpwnam(
- pkiconfig.pki_common_dict['pki_user'])[2]
- os.mkdir(self.pki_path,
- pkiconfig.PKI_DEPLOYMENT_DEFAULT_DIR_PERMISSIONS)
- os.chown(self.pki_path,
- pki_uid,
- pki_gid)
- os.mkdir(self.pki_instance_path,
- pkiconfig.PKI_DEPLOYMENT_DEFAULT_DIR_PERMISSIONS)
- os.chown(self.pki_instance_path,
- pki_uid,
- pki_gid)
- os.mkdir(self.pki_subsystem_path,
- pkiconfig.PKI_DEPLOYMENT_DEFAULT_DIR_PERMISSIONS)
- os.chown(self.pki_subsystem_path,
- pki_uid,
- pki_gid)
- except KeyError:
- self.rv = KeyError
- except OSError:
- self.rv = OSError
- elif not os.path.isdir(self.pki_subsystem_path):
- pkiconfig.pki_log.error(
- log.PKI_DIRECTORY_ALREADY_EXISTS_NOT_A_DIRECTORY_1,
- self.pki_subsystem_path)
- self.rv = -1
- else:
- pkiconfig.pki_log.error(log.PKI_DIRECTORY_ALREADY_EXISTS_1,
- self.pki_subsystem_path)
- self.rv = -1
- return self.rv
-
- def respawn(self):
- if not os.path.exists(self.pki_subsystem_path) or\
- not os.path.isdir(self.pki_subsystem_path):
- pkiconfig.pki_log.error(
- log.PKI_DIRECTORY_MISSING_OR_NOT_A_DIRECTORY_1,
- self.pki_subsystem_path)
- self.rv = -1
- else:
- pkiconfig.pki_log.info(log.INSTANCE_RESPAWN_1, __name__)
- return self.rv
-
- def destroy(self):
- if not os.path.exists(self.pki_subsystem_path) or\
- not os.path.isdir(self.pki_subsystem_path):
- pkiconfig.pki_log.error(
- log.PKI_DIRECTORY_MISSING_OR_NOT_A_DIRECTORY_1,
- self.pki_subsystem_path)
- self.rv = -1
- else:
- pkiconfig.pki_log.info(log.INSTANCE_DESTROY_1, __name__)
- return self.rv
-
diff --git a/pki/base/deploy/src/scriptlets/pkiconfig.py b/pki/base/deploy/src/scriptlets/pkiconfig.py
deleted file mode 100644
index 3c2eb70a8..000000000
--- a/pki/base/deploy/src/scriptlets/pkiconfig.py
+++ /dev/null
@@ -1,95 +0,0 @@
-#!/usr/bin/python -t
-# Authors:
-# Matthew Harmsen <mharmsen@redhat.com>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Copyright (C) 2011 Red Hat, Inc.
-# All rights reserved.
-#
-
-# System Imports
-import logging
-
-
-# PKI Deployment Constants
-PKI_DEPLOYMENT_PATH = "/usr/share/pki/deployment"
-PKI_DEPLOYMENT_CONFIG_PATH = PKI_DEPLOYMENT_PATH + "/" + "config"
-PKI_DEPLOYMENT_SCRIPTLETS_MODULE = "pki.deployment"
-PKI_DEPLOYMENT_VERBOSITY=\
-"VERBOSITY FLAGS CONSOLE MESSAGE LEVEL LOG MESSAGE LEVEL\n"\
-"=======================================================================\n"\
-" NONE error|warning error|warning|info\n"\
-" -v error|warning|info error|warning|info\n"\
-" -vv error|warning|info error|warning|info|debug\n"\
-" -vvv error|warning|info|debug error|warning|info|debug\n"\
-" "
-PKI_DEPLOYMENT_DEFAULT_DIR_PERMISSIONS = 00770
-PKI_DEPLOYMENT_DEFAULT_EXE_PERMISSIONS = 00770
-PKI_DEPLOYMENT_DEFAULT_FILE_PERMISSIONS = 00660
-PKI_DEPLOYMENT_DEFAULT_UMASK = 00002
-
-PKIDESTROY_PATH = PKI_DEPLOYMENT_PATH + "/" + "destroy"
-PKIDESTROY_LOG_PATH = "/var/log"
-PKIDESTROY_LOG_PREFIX = "pki-"
-PKIDESTROY_LOG_SUFFIX = "-destroy.log"
-PKIDESTROY_LOGGER = "pkidestroy"
-
-PKIRESPAWN_PATH = PKI_DEPLOYMENT_PATH + "/" + "spawn"
-PKIRESPAWN_LOG_PATH = "/var/log"
-PKIRESPAWN_LOG_PREFIX = "pki-"
-PKIRESPAWN_LOG_SUFFIX = "-respawn.log"
-PKIRESPAWN_LOGGER = "pkirespawn"
-
-PKISPAWN_PATH = PKI_DEPLOYMENT_PATH + "/" + "spawn"
-PKISPAWN_LOG_PATH = "/var/log"
-PKISPAWN_LOG_PREFIX = "pki-"
-PKISPAWN_LOG_SUFFIX = "-spawn.log"
-PKISPAWN_LOGGER = "pkispawn"
-
-PKI_SECURITY_DATABASE_DIR = "alias"
-PKI_SUBSYSTEMS = ["CA","KRA","OCSP","RA","TKS","TPS"]
-PKI_APACHE_SUBSYSTEMS = ["RA","TPS"]
-PKI_TOMCAT_SUBSYSTEMS = ["CA","KRA","OCSP","TKS"]
-
-
-# PKI Deployment "Mandatory" Command-Line Variables
-pki_subsystem = None
-
-# PKI Deployment "Optional" Command-Line Variables
-pkideployment_cfg = PKI_DEPLOYMENT_CONFIG_PATH + "/" + "pkideployment.cfg"
-pki_dry_run_flag = False
-pki_root_prefix = None
-pki_update_flag = False
-
-# PKI Deployment "Custom" Command-Line Variables
-pki_instance_name = None
-pki_http_port = None
-pki_https_port = None
-pki_ajp_port = None
-
-
-# PKI Deployment Logger Variables
-pki_log = None
-pki_log_dir = None
-pki_log_name = None
-pki_log_level = logging.INFO
-pki_console_log_level = logging.WARNING
-
-
-# PKI Deployment Global Dictionaries
-pki_common_dict = None
-pki_web_server_dict = None
-pki_subsystem_dict = None
-
diff --git a/pki/base/deploy/src/scriptlets/pkihelper.py b/pki/base/deploy/src/scriptlets/pkihelper.py
deleted file mode 100644
index 2f206f387..000000000
--- a/pki/base/deploy/src/scriptlets/pkihelper.py
+++ /dev/null
@@ -1,212 +0,0 @@
-#!/usr/bin/python -t
-# Authors:
-# Matthew Harmsen <mharmsen@redhat.com>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Copyright (C) 2011 Red Hat, Inc.
-# All rights reserved.
-#
-
-# System Imports
-import ConfigParser
-import argparse
-import logging
-import os
-
-
-# PKI Deployment Imports
-import pkiconfig
-import pkimessages as log
-
-
-# PKI Deployment Helper Functions
-def process_command_line_arguments(argv):
- "Read and process command-line options"
- description = None
- if os.path.basename(argv[0]) == 'pkispawn':
- description = 'PKI Instance Installation and Configuration'
- elif os.path.basename(argv[0]) == 'pkidestroy':
- description = 'PKI Instance Removal'
- parser = argparse.ArgumentParser(
- description=description,
- add_help=False,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- epilog=pkiconfig.PKI_DEPLOYMENT_VERBOSITY)
- mandatory = parser.add_argument_group('mandatory arguments')
- mandatory.add_argument('-s',
- dest='pki_subsystem', action='store',
- nargs=1, choices=pkiconfig.PKI_SUBSYSTEMS,
- required=True, metavar='<subsystem>',
- help='where <subsystem> is '
- 'CA, KRA, OCSP, RA, TKS, or TPS')
- optional = parser.add_argument_group('optional arguments')
- optional.add_argument('--dry_run',
- dest='pki_dry_run_flag', action='store_true',
- help='do not actually perform any actions')
- optional.add_argument('-f',
- dest='pkideployment_cfg', action='store',
- nargs=1, metavar='<file>',
- help='overrides default configuration filename')
- optional.add_argument('-h', '--help',
- dest='help', action='help',
- help='show this help message and exit')
- optional.add_argument('-p',
- dest='pki_root_prefix', action='store',
- nargs=1, metavar='<prefix>',
- help='directory prefix to specify local directory')
- if os.path.basename(argv[0]) == 'pkispawn':
- optional.add_argument('-u',
- dest='pki_update_flag', action='store_true',
- help='update instance of specified subsystem')
- optional.add_argument('-v',
- dest='pki_verbosity', action='count',
- help='display verbose information (details below)')
- custom = parser.add_argument_group('custom arguments '
- '(OVERRIDES configuration file values)')
- custom.add_argument('-i',
- dest='pki_instance_name', action='store',
- nargs=1, metavar='<instance>',
- help='PKI instance name (MUST specify REQUIRED ports)')
- custom.add_argument('--http_port',
- dest='pki_http_port', action='store',
- nargs=1, metavar='<port>',
- help='HTTP port (CA, KRA, OCSP, RA, TKS, TPS)')
- custom.add_argument('--https_port',
- dest='pki_https_port', action='store',
- nargs=1, metavar='<port>',
- help='HTTPS port (CA, KRA, OCSP, RA, TKS, TPS)')
- custom.add_argument('--ajp_port',
- dest='pki_ajp_port', action='store',
- nargs=1, metavar='<port>',
- help='AJP port (CA, KRA, OCSP, TKS)')
- args = parser.parse_args()
-
- pkiconfig.pki_subsystem = str(args.pki_subsystem).strip('[\']')
- if args.pki_dry_run_flag:
- pkiconfig.pki_dry_run_flag = args.pki_dry_run_flag
- if not args.pkideployment_cfg is None:
- pkiconfig.pkideployment_cfg = str(args.pkideployment_cfg).strip('[\']')
- if not os.path.exists(pkiconfig.pkideployment_cfg) or\
- not os.path.isfile(pkiconfig.pkideployment_cfg):
- print "ERROR: " +\
- log.PKI_FILE_MISSING_OR_NOT_A_FILE_1 %\
- pkiconfig.pkideployment_cfg
- print
- parser.print_help()
- parser.exit(-1);
- if not args.pki_root_prefix is None:
- pkiconfig.pki_root_prefix = str(args.pki_root_prefix).strip('[\']')
- if pkiconfig.pki_root_prefix is None or\
- len(pkiconfig.pki_root_prefix) == 0:
- pkiconfig.pki_root_prefix = ""
- elif not os.path.exists(pkiconfig.pki_root_prefix) or\
- not os.path.isdir(pkiconfig.pki_root_prefix):
- print "ERROR: " +\
- log.PKI_DIRECTORY_MISSING_OR_NOT_A_DIRECTORY_1 %\
- pkiconfig.pki_root_prefix
- print
- parser.print_help()
- parser.exit(-1);
- if os.path.basename(argv[0]) == 'pkispawn':
- if args.pki_update_flag:
- pkiconfig.pki_update_flag = args.pki_update_flag
- if args.pki_verbosity == 1:
- pkiconfig.pki_console_log_level = logging.INFO
- pkiconfig.pki_log_level = logging.INFO
- elif args.pki_verbosity == 2:
- pkiconfig.pki_console_log_level = logging.INFO
- pkiconfig.pki_log_level = logging.DEBUG
- elif args.pki_verbosity == 3:
- pkiconfig.pki_console_log_level = logging.DEBUG
- pkiconfig.pki_log_level = logging.DEBUG
- elif args.pki_verbosity > 3:
- print "ERROR: " + log.PKI_VERBOSITY_LEVELS_MESSAGE
- print
- parser.print_help()
- parser.exit(-1);
- if not args.pki_instance_name is None:
- pkiconfig.pki_instance_name = str(args.pki_instance_name).strip('[\']')
- if not args.pki_http_port is None:
- pkiconfig.pki_http_port = str(args.pki_http_port).strip('[\']')
- if not args.pki_https_port is None:
- pkiconfig.pki_https_port = str(args.pki_https_port).strip('[\']')
- if not args.pki_ajp_port is None:
- if pkiconfig.pki_subsystem in pkiconfig.PKI_TOMCAT_SUBSYSTEMS:
- pkiconfig.pki_ajp_port = str(args.pki_ajp_port).strip('[\']')
- else:
- print "ERROR: " +\
- log.PKI_CUSTOM_TOMCAT_AJP_PORT_1 %\
- pkiconfig.pki_subsystem
- print
- parser.print_help()
- parser.exit(-1);
- if not args.pki_instance_name is None or\
- not args.pki_http_port is None or\
- not args.pki_https_port is None or\
- not args.pki_ajp_port is None:
- if pkiconfig.pki_subsystem in pkiconfig.PKI_APACHE_SUBSYSTEMS:
- if args.pki_instance_name is None or\
- args.pki_http_port is None or\
- args.pki_https_port is None:
- print "ERROR: " + log.PKI_CUSTOM_APACHE_INSTANCE_1 %\
- pkiconfig.pki_subsystem
- print
- parser.print_help()
- parser.exit(-1);
- elif pkiconfig.pki_subsystem in pkiconfig.PKI_TOMCAT_SUBSYSTEMS:
- if args.pki_instance_name is None or\
- args.pki_http_port is None or\
- args.pki_https_port is None or\
- args.pki_ajp_port is None:
- print "ERROR: " + log.PKI_CUSTOM_TOMCAT_INSTANCE_1 %\
- pkiconfig.pki_subsystem
- print
- parser.print_help()
- parser.exit(-1);
-
-
-def read_pki_configuration_file():
- "Read configuration file sections into dictionaries"
- rv = 0
- try:
- parser = ConfigParser.ConfigParser()
- parser.read(pkiconfig.pkideployment_cfg)
- pkiconfig.pki_common_dict = dict(parser._sections['Common'])
- if pkiconfig.pki_subsystem == "CA":
- pkiconfig.pki_web_server_dict = dict(parser._sections['Tomcat'])
- pkiconfig.pki_subsystem_dict = dict(parser._sections['CA'])
- elif pkiconfig.pki_subsystem == "KRA":
- pkiconfig.pki_web_server_dict = dict(parser._sections['Tomcat'])
- pkiconfig.pki_subsystem_dict = dict(parser._sections['KRA'])
- elif pkiconfig.pki_subsystem == "OCSP":
- pkiconfig.pki_web_server_dict = dict(parser._sections['Tomcat'])
- pkiconfig.pki_subsystem_dict = dict(parser._sections['OCSP'])
- elif pkiconfig.pki_subsystem == "RA":
- pkiconfig.pki_web_server_dict = dict(parser._sections['Apache'])
- pkiconfig.pki_subsystem_dict = dict(parser._sections['RA'])
- elif pkiconfig.pki_subsystem == "TKS":
- pkiconfig.pki_web_server_dict = dict(parser._sections['Tomcat'])
- pkiconfig.pki_subsystem_dict = dict(parser._sections['TKS'])
- elif pkiconfig.pki_subsystem == "TPS":
- pkiconfig.pki_web_server_dict = dict(parser._sections['Apache'])
- pkiconfig.pki_subsystem_dict = dict(parser._sections['TPS'])
- # Insert empty record into dictionaries for "pretty print" statements
- pkiconfig.pki_common_dict[0] = None
- pkiconfig.pki_web_server_dict[0] = None
- pkiconfig.pki_subsystem_dict[0] = None
- except ConfigParser.ParsingError, err:
- rv = err
- return rv
-
diff --git a/pki/base/deploy/src/scriptlets/pkilogging.py b/pki/base/deploy/src/scriptlets/pkilogging.py
deleted file mode 100644
index 776677cfd..000000000
--- a/pki/base/deploy/src/scriptlets/pkilogging.py
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/python -t
-# Authors:
-# Matthew Harmsen <mharmsen@redhat.com>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Copyright (C) 2011 Red Hat, Inc.
-# All rights reserved.
-#
-
-# System Imports
-import logging
-import os
-
-
-# PKI Deployment Logging Functions
-def enable_pki_logger(log_dir, log_name, log_level, console_log_level, logger):
- if not os.path.isdir(log_dir):
- try:
- os.makedirs(log_dir)
- except OSError:
- return OSError
- logging.basicConfig(level=log_level,
- format='%(asctime)s %(name)-12s ' +\
- '%(levelname)-8s %(message)s',
- datefmt='%Y-%m-%d %H:%M:%S',
- filename=log_dir + "/" + log_name,
- filemode='w')
- console = logging.StreamHandler()
- console.setLevel(console_log_level)
- formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
- console.setFormatter(formatter)
- logging.getLogger('').addHandler(console)
- return logging.getLogger(logger)
-
diff --git a/pki/base/deploy/src/scriptlets/pkimessages.py b/pki/base/deploy/src/scriptlets/pkimessages.py
deleted file mode 100644
index 0b9d36ce3..000000000
--- a/pki/base/deploy/src/scriptlets/pkimessages.py
+++ /dev/null
@@ -1,98 +0,0 @@
-#!/usr/bin/python -t
-# Authors:
-# Matthew Harmsen <mharmsen@redhat.com>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Copyright (C) 2011 Red Hat, Inc.
-# All rights reserved.
-#
-
-# PKI Deployment Engine Messages
-PKI_CUSTOM_APACHE_INSTANCE_1 = "When a custom '%s' subsystem is being "\
- "deployed, the 'instance', 'http_port', and "\
- "'https_port' must ALL be specified!"
-PKI_CUSTOM_TOMCAT_INSTANCE_1 = "When a custom '%s' subsystem is being "\
- "deployed, the 'instance', 'http_port', "\
- "'https_port', and 'ajp_port' must ALL be "\
- "specified!"
-PKI_CUSTOM_TOMCAT_AJP_PORT_1 = "When a custom '%s' subsystem is being "\
- "deployed, ONLY the 'instance', "\
- "'http_port', and 'https_port' MUST be "\
- "specified; NO 'ajp_port' should be requested!"
-PKI_DIRECTORY_ALREADY_EXISTS_1 = "Directory '%s' already exists!"
-PKI_DIRECTORY_ALREADY_EXISTS_NOT_A_DIRECTORY_1 = "Directory '%s' already "\
- "exists BUT it is NOT a "\
- "directory!"
-PKI_DIRECTORY_MISSING_OR_NOT_A_DIRECTORY_1 = "Directory '%s' is either "\
- "missing or is NOT a directory!"
-PKI_FILE_MISSING_OR_NOT_A_FILE_1 = "File '%s' is either missing "\
- "or is NOT a regular file!"
-PKI_UNABLE_TO_PARSE_1 = "'Could not parse: '%s'"
-PKI_UNABLE_TO_CREATE_LOG_DIRECTORY_1 = "Could not create log directory '%s'!"
-PKI_VERBOSITY_LEVELS_MESSAGE = "Only up to 3 levels of verbosity are supported!"
-
-
-# PKI Deployment 'pkispawn' and 'pkidestroy' Messages
-PKIDESTROY_BEGIN_MESSAGE_2 = "BEGIN destroying subsystem '%s' of "\
- "instance '%s' . . ."
-PKIDESTROY_END_MESSAGE_2 = "END destroying subsystem '%s' of "\
- "instance '%s'."
-PKIRESPAWN_BEGIN_MESSAGE_2 = "BEGIN respawning subsystem '%s' of "\
- "instance '%s' . . ."
-PKIRESPAWN_END_MESSAGE_2 = "END respawning subsystem '%s' of "\
- "instance '%s'."
-PKISPAWN_BEGIN_MESSAGE_2 = "BEGIN spawning subsystem '%s' of "\
- "instance '%s' . . ."
-PKISPAWN_END_MESSAGE_2 = "END spawning subsystem '%s' of "\
- "instance '%s'."
-
-
-PKI_DIRECTORY_ALREADY_EXISTS_1 = "Directory '%s' already exists!"
-PKI_DIRECTORY_ALREADY_EXISTS_NOT_A_DIRECTORY_1 = "Directory '%s' already "\
- "exists BUT it is NOT a "\
- "directory!"
-PKI_DIRECTORY_MISSING_OR_NOT_A_DIRECTORY_1 = "Directory '%s' is either "\
- "missing or is NOT a directory!"
-PKI_FILE_MISSING_OR_NOT_A_FILE_1 = "File '%s' is either missing "\
- "or is NOT a regular file!"
-PKI_UNABLE_TO_PARSE_1 = "'Could not parse: '%s'"
-PKI_UNABLE_TO_CREATE_LOG_DIRECTORY_1 = "Could not create log directory '%s'!"
-PKI_VERBOSITY_LEVELS_MESSAGE = "Only up to 3 levels of verbosity are supported!"
-
-
-# PKI Deployment 'pkispawn' and 'pkidestroy' Messages
-PKIDESTROY_BEGIN_MESSAGE_2 = "BEGIN destroying subsystem '%s' of "\
- "instance '%s' . . ."
-PKIDESTROY_END_MESSAGE_2 = "END destroying subsystem '%s' of "\
- "instance '%s'."
-PKIRESPAWN_BEGIN_MESSAGE_2 = "BEGIN respawning subsystem '%s' of "\
- "instance '%s' . . ."
-PKIRESPAWN_END_MESSAGE_2 = "END respawning subsystem '%s' of "\
- "instance '%s'."
-PKISPAWN_BEGIN_MESSAGE_2 = "BEGIN spawning subsystem '%s' of "\
- "instance '%s' . . ."
-PKISPAWN_END_MESSAGE_2 = "END spawning subsystem '%s' of "\
- "instance '%s'."
-
-
-# PKI Deployment "Scriptlet" Messages
-INSTANCE_DESTROY_1 = " depopulating '%s'"
-INSTANCE_RESPAWN_1 = " repopulating '%s'"
-INSTANCE_SPAWN_1 = " populating '%s'"
-INSTANCE_SPAWN_MKDIR_1 = " mkdir '%s'"
-SECURITY_DATABASES_DESTROY_1 = " removing '%s'"
-SECURITY_DATABASES_RESPAWN_1 = " regenerating '%s'"
-SECURITY_DATABASES_SPAWN_1 = " generating '%s'"
-
diff --git a/pki/base/deploy/src/scriptlets/pkiscriptlet.py b/pki/base/deploy/src/scriptlets/pkiscriptlet.py
deleted file mode 100644
index a66b6b8e2..000000000
--- a/pki/base/deploy/src/scriptlets/pkiscriptlet.py
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/usr/bin/python -t
-# Authors:
-# Matthew Harmsen <mharmsen@redhat.com>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Copyright (C) 2011 Red Hat, Inc.
-# All rights reserved.
-#
-
-# System Imports
-import abc
-
-
-# PKI Deployment Classes
-class AbstractBasePkiScriptlet(object):
- __metaclass__ = abc.ABCMeta
-
- @abc.abstractmethod
- def spawn(self):
- """Retrieve data from the specified dictionaries and
- use it to install a new PKI instance."""
- return
-
- @abc.abstractmethod
- def respawn(self):
- """Retrieve data from the specified dictionaries and
- use it to update an existing PKI instance."""
- return
-
- @abc.abstractmethod
- def destroy(self):
- """Retrieve data from the specified dictionaries and
- use it to destroy an existing PKI instance."""
- return
-
diff --git a/pki/base/deploy/src/scriptlets/security_databases.py b/pki/base/deploy/src/scriptlets/security_databases.py
deleted file mode 100644
index ce67256e7..000000000
--- a/pki/base/deploy/src/scriptlets/security_databases.py
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/usr/bin/python -t
-# Authors:
-# Matthew Harmsen <mharmsen@redhat.com>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Copyright (C) 2011 Red Hat, Inc.
-# All rights reserved.
-#
-
-# System Imports
-import os
-
-# PKI Deployment Imports
-import pkiconfig
-import pkimessages as log
-import pkiscriptlet
-
-
-# PKI Deployment Security Database Classes
-class PkiScriptlet(pkiscriptlet.AbstractBasePkiScriptlet):
- rv = 0
- pki_path = pkiconfig.pki_root_prefix +\
- pkiconfig.pki_common_dict['pki_instance_root']
- pki_instance_path = pki_path + "/" +\
- pkiconfig.pki_common_dict['pki_instance_name']
- pki_subsystem_path = pki_instance_path + "/" +\
- pkiconfig.pki_subsystem_dict['pki_subsystem'].lower()
- pki_database_path = pki_subsystem_path + "/" +\
- pkiconfig.PKI_SECURITY_DATABASE_DIR
-
- def spawn(self):
- if not os.path.exists(self.pki_database_path):
- pkiconfig.pki_log.info(log.SECURITY_DATABASES_SPAWN_1, __name__)
- elif not os.path.isdir(self.pki_database_path):
- pkiconfig.pki_log.error(
- log.PKI_DIRECTORY_ALREADY_EXISTS_NOT_A_DIRECTORY_1,
- self.pki_database_path)
- self.rv = -1
- else:
- pkiconfig.pki_log.error(log.PKI_DIRECTORY_ALREADY_EXISTS_1,
- self.pki_database_path)
- self.rv = -1
- return self.rv
-
- def respawn(self):
- if not os.path.exists(self.pki_database_path) or\
- not os.path.isdir(self.pki_database_path):
- pkiconfig.pki_log.error(
- log.PKI_DIRECTORY_MISSING_OR_NOT_A_DIRECTORY_1,
- self.pki_database_path)
- self.rv = -1
- else:
- pkiconfig.pki_log.info(log.SECURITY_DATABASES_RESPAWN_1, __name__)
- return self.rv
-
- def destroy(self):
- if not os.path.exists(self.pki_database_path) or\
- not os.path.isdir(self.pki_database_path):
- pkiconfig.pki_log.error(
- log.PKI_DIRECTORY_MISSING_OR_NOT_A_DIRECTORY_1,
- self.pki_database_path)
- self.rv = -1
- else:
- pkiconfig.pki_log.info(log.SECURITY_DATABASES_DESTROY_1, __name__)
- return self.rv
-