Home | History | Annotate | Download | only in rpm_control_system
      1 # Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 import os
      5 
      6 import ConfigParser
      7 
      8 CONFIG_FILE = os.path.join(os.path.dirname(__file__), 'rpm_config.ini')
      9 rpm_config = ConfigParser.SafeConfigParser()
     10 rpm_config.read(CONFIG_FILE)