#!/bin/sh
#
# Copyright 2009 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# This script is part of the @@PACKAGE@@ package.
#
# It creates the repository configuration file for package updates, since
# we cannot do this during the @@PACKAGE@@ installation since the repository
# is locked.
#
# This functionality can be controlled by creating the $DEFAULTS_FILE and
# setting "repo_add_once" to "true" or "false" as desired. An empty
# $DEFAULTS_FILE is the same as setting the value to "false".
@@include@@../common/variables.include
@@include@@rpm.include
## MAIN ##
if [ -r "$DEFAULTS_FILE" ]; then
. "$DEFAULTS_FILE"
fi
install_rpm_key
if [ "$repo_add_once" = "true" ]; then
determine_rpm_package_manager
# Let's run through this for each supported package manager as detected...
for PACKAGEMANAGER in ${PACKAGEMANAGERS[*]}
do
# The initial install happens in the post-install scripts, but there have been
# reports of configuration problems, so just verify that everything looks
# good, and if not, try to install again.
verify_install $PACKAGEMANAGER
if [ $? -ne 0 ]; then
install_${PACKAGEMANAGER}
fi
done
if [ $? -eq 0 ]; then
# Do this for each supported package manager...
for PACKAGEMANAGER in ${PACKAGEMANAGERS[*]}
do
# Before we quit auto-configuration, check that everything looks sane, since
# part of this happened during package install and we don't have the return
# value of that process.
verify_install $PACKAGEMANAGER
if [ $? -eq 0 ]; then
sed -i -e 's/[[:space:]]*repo_add_once=.*/repo_add_once="false"/' \
"$DEFAULTS_FILE"
fi
done
fi
else
update_bad_repo
fi