From 489636a2cbf7f6cbfb61e34e69c7c4d3d325ffa9 Mon Sep 17 00:00:00 2001 From: Fraser Tweedale Date: Mon, 15 Jun 2015 11:25:10 -0400 Subject: Upgrade: add scriptlet to fix nuxwdog listener class --- .../upgrade/10.2.4/02-FixNuxwdogListenerClass | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 base/server/upgrade/10.2.4/02-FixNuxwdogListenerClass (limited to 'base/server/upgrade') 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 +# +# 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) + ]) -- cgit