summaryrefslogtreecommitdiffstats
path: root/base/server/upgrade
diff options
context:
space:
mode:
authorFraser Tweedale <frase@frase.id.au>2015-06-15 11:25:10 -0400
committerFraser Tweedale <frase@frase.id.au>2015-06-16 01:38:06 -0400
commit489636a2cbf7f6cbfb61e34e69c7c4d3d325ffa9 (patch)
treef0afd22c1878ac4dc12e3a4a6f412fa6ac46c9cc /base/server/upgrade
parentbc72cbf28e1af940762487eb528427a78bb7aa7c (diff)
downloadpki-489636a2cbf7f6cbfb61e34e69c7c4d3d325ffa9.tar.gz
pki-489636a2cbf7f6cbfb61e34e69c7c4d3d325ffa9.tar.xz
pki-489636a2cbf7f6cbfb61e34e69c7c4d3d325ffa9.zip
Upgrade: add scriptlet to fix nuxwdog listener class
Diffstat (limited to 'base/server/upgrade')
-rwxr-xr-xbase/server/upgrade/10.2.4/02-FixNuxwdogListenerClass36
1 files changed, 36 insertions, 0 deletions
diff --git a/base/server/upgrade/10.2.4/02-FixNuxwdogListenerClass b/base/server/upgrade/10.2.4/02-FixNuxwdogListenerClass
new file mode 100755
index 000000000..22096e935
--- /dev/null
+++ b/base/server/upgrade/10.2.4/02-FixNuxwdogListenerClass
@@ -0,0 +1,36 @@
+#!/usr/bin/python
+# Authors:
+# Fraser Tweedale <ftweedal@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) 2015 Red Hat, Inc.
+# All rights reserved.
+#
+
+import os
+import subprocess
+
+import pki.server.upgrade
+
+
+class FixNuxwdogListenerClass(pki.server.upgrade.PKIServerUpgradeScriptlet):
+ def __init__(self):
+ self.message = 'Fix nuxwdog listener class'
+
+ def upgrade_instance(self, instance):
+ subprocess.check_call([
+ 'sed', '-i', 's/NuxwdogPasswordStoreInitializer/PKIListener/',
+ '/etc/pki/{0}/server.xml'.format(instance.name)
+ ])