Blame Automation/Modules/Vcs/Subversion/subversion_syncRepoChanges.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# subversion_syncRepoChanges.sh -- This function synchronizes both
Alain Reguera Delgado 8f60cb
# central repository and working copy directory structures by
Alain Reguera Delgado 8f60cb
# performing a subversion update command first and a subversion commit
Alain Reguera Delgado 8f60cb
# command later.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 8f60cb
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 8f60cb
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 8f60cb
# your option) any later version.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 8f60cb
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 8f60cb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 8f60cb
# General Public License for more details.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 8f60cb
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 8f60cb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
# $Id$
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
function subversion_syncRepoChanges {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local LOCATION=''
Alain Reguera Delgado 8f60cb
    local LOCATIONS="${@}"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    for LOCATION in $LOCATIONS;do
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Verify whether the location is valid or not.
Alain Reguera Delgado 8f60cb
        LOCATION=$(cli_checkRepoDirSource ${LOCATION})
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Verify source location absolute path. It should point either
Alain Reguera Delgado 8f60cb
        # to existent files or directories both under version control
Alain Reguera Delgado 8f60cb
        # inside the working copy.  Otherwise, if it doesn't point to
Alain Reguera Delgado 8f60cb
        # an existent file under version control, finish the script
Alain Reguera Delgado 8f60cb
        # execution with an error message.
Alain Reguera Delgado 8f60cb
        cli_checkFiles ${LOCATION} -e --is-versioned
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Bring changes from the repository into the working copy.
Alain Reguera Delgado 8f60cb
        subversion_updateRepoChanges ${LOCATION}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Check changes in the working copy.
Alain Reguera Delgado 8f60cb
        subversion_commitRepoChanges ${LOCATION}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    done
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}