diff options
Diffstat (limited to 'base')
-rwxr-xr-x | base/server/upgrade/10.0.99/01-FixJavaOpts (renamed from base/server/upgrade/10.1.0/01-FixJavaOpts) | 0 | ||||
-rwxr-xr-x | base/server/upgrade/10.0.99/02-UpdateAuthzProperties | 45 |
2 files changed, 45 insertions, 0 deletions
diff --git a/base/server/upgrade/10.1.0/01-FixJavaOpts b/base/server/upgrade/10.0.99/01-FixJavaOpts index d89f7b425..d89f7b425 100755 --- a/base/server/upgrade/10.1.0/01-FixJavaOpts +++ b/base/server/upgrade/10.0.99/01-FixJavaOpts diff --git a/base/server/upgrade/10.0.99/02-UpdateAuthzProperties b/base/server/upgrade/10.0.99/02-UpdateAuthzProperties new file mode 100755 index 000000000..992b2d518 --- /dev/null +++ b/base/server/upgrade/10.0.99/02-UpdateAuthzProperties @@ -0,0 +1,45 @@ +#!/usr/bin/python +# Authors: +# Ade Lee <alee@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) 2013 Red Hat, Inc. +# All rights reserved. +# + +import os +import pki +import shutil +import pki.server.upgrade + + +class UpdateAuthzProperties(pki.server.upgrade.PKIServerUpgradeScriptlet): + + def __init__(self): + self.message = 'Update auth.properties' + + def upgrade_subsystem(self, instance, subsystem): + auth_properties = os.path.join( + instance.base_dir, + 'webapps', subsystem.name, + 'WEB-INF', 'auth.properties') + + self.backup(auth_properties) + default_auth_properties = os.path.join( + pki.SHARE_DIR, subsystem.name, + 'webapps', subsystem.name, + 'WEB-INF', 'auth.properties') + + shutil.copyfile(default_auth_properties, auth_properties) |