# 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; either version 2 of the License, or # (at your option) any later version. # # 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 Library 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # This plugin changes the current dir. before running yum ops. That means that # relative paths are broken, but that's mostly less annoying than: # # BZ 672576: rpm installation fails silently if current directory is not # accessible from yum.plugins import TYPE_INTERACTIVE requires_api_version = '2.4' plugin_type = (TYPE_INTERACTIVE,) import os def init_hook(conduit): path = conduit.confString('main', 'path', default='/') log = conduit._base.verbose_logger.debug log(4, 'Changing current dir to: %s' % path) os.chdir(path)