summaryrefslogtreecommitdiffstats
path: root/base/deploy/src/engine/pkiscriptlet.py
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2013-04-05 15:20:01 -0400
committerEndi Sukma Dewata <edewata@redhat.com>2013-04-09 09:40:09 -0400
commit62ccd4ca0addd8a4c74bcbdfca6aea0c9381907f (patch)
treead78a933e29a517bae7876248820c40b9b5db197 /base/deploy/src/engine/pkiscriptlet.py
parent2e0194dd7791eaf07d6e9eb26df57e5a4677f426 (diff)
downloadpki-62ccd4ca0addd8a4c74bcbdfca6aea0c9381907f.tar.gz
pki-62ccd4ca0addd8a4c74bcbdfca6aea0c9381907f.tar.xz
pki-62ccd4ca0addd8a4c74bcbdfca6aea0c9381907f.zip
Renamed base/deploy to base/server.
The base/deploy folder has been renamed to base/server to match the package name. The pki.conf has been moved into pki-base package. Ticket #553, #564
Diffstat (limited to 'base/deploy/src/engine/pkiscriptlet.py')
-rw-r--r--base/deploy/src/engine/pkiscriptlet.py46
1 files changed, 0 insertions, 46 deletions
diff --git a/base/deploy/src/engine/pkiscriptlet.py b/base/deploy/src/engine/pkiscriptlet.py
deleted file mode 100644
index 767b3c609..000000000
--- a/base/deploy/src/engine/pkiscriptlet.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) 2012 Red Hat, Inc.
-# All rights reserved.
-#
-
-# System Imports
-import abc
-
-
-# PKI Deployment Abstract Base PKI Scriptlet
-class AbstractBasePkiScriptlet(object):
- __metaclass__ = abc.ABCMeta
-
- @abc.abstractmethod
- def spawn(self):
- """Retrieve data from the specified PKI dictionary and
- use it to install a new PKI instance."""
- return
-
- @abc.abstractmethod
- def respawn(self):
- """Retrieve data from the specified PKI dictionary and
- use it to update an existing PKI instance."""
- return
-
- @abc.abstractmethod
- def destroy(self):
- """Retrieve data from the specified PKI dictionary and
- use it to destroy an existing PKI instance."""
- return