manjaro-tools/lib/util-publish.sh
2015-11-26 12:25:45 +01:00

44 lines
1.3 KiB
Bash

#!/bin/bash
#
# 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.
create_subtree_ssh(){
local tree=${remote_target}/${remote_project}/${remote_tree}
ssh !${remote_user}@${shell_url} [[ ! -d $tree ]] && mkdir -pv $tree
}
create_subtree(){
msg "Create ${edition_type}/$1 ..."
rsync ${rsync_args[*]} /dev/null ${sf_url}/${edition_type}
rsync ${rsync_args[*]} /dev/null ${sf_url}/$1
msg "Done"
msg3 "Time ${FUNCNAME}: $(elapsed_time ${timer_start}) minutes"
}
sync_dir(){
cd $1
load_profile "$1"
${remote_create} && create_subtree "$1"
msg "Start upload [$1] ..."
rsync ${rsync_args[*]} ${cache_dir_iso}/ ${sf_url}/${remote_tree}/
msg "Done upload [$1]"
msg3 "Time ${FUNCNAME}: $(elapsed_time ${timer_start}) minutes"
cd ..
}
upload(){
if ${is_buildset};then
for prof in ${buildlist[@]}; do
sync_dir "$prof"
done
else
sync_dir "${buildset_iso}"
fi
}