manjaro-tools/lib/util-publish.sh

47 lines
1.5 KiB
Bash
Raw Normal View History

2015-11-12 19:03:21 +01:00
#!/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.
2015-11-26 01:21:16 +01:00
create_subtree_ssh(){
2015-11-30 23:12:27 +01:00
local tree=${remote_target}/${remote_project}/${remote_dir}
2015-11-26 12:25:45 +01:00
ssh !${remote_user}@${shell_url} [[ ! -d $tree ]] && mkdir -pv $tree
2015-11-12 19:03:21 +01:00
}
2015-11-26 01:21:16 +01:00
create_subtree(){
msg2 "Create (%s) ..." "${edition}/$1/${dist_release}"
2015-12-04 23:08:27 +01:00
rsync ${rsync_args[*]} /dev/null ${sf_url}/${edition}/
rsync ${rsync_args[*]} /dev/null ${sf_url}/${edition}/$1/
rsync ${rsync_args[*]} /dev/null ${sf_url}/${edition}/$1/${dist_release}/
2015-11-27 12:22:38 +01:00
msg2 "Done"
show_elapsed_time "${FUNCNAME}" "${timer_start}"
2015-11-26 01:21:16 +01:00
}
prepare_transfer(){
2015-12-04 23:08:27 +01:00
remote_dir="${edition}/$1/${dist_release}/${arch}"
src_dir="${run_dir}/${remote_dir}"
}
create_torrent(){
2016-02-18 12:03:26 +01:00
msg "Create %s.torrent" "$1"
mktorrent -v -p -l ${piece_size} -a ${tracker_url} -o ${USER_HOME}/$1.torrent ${src_dir}
2016-02-18 12:03:26 +01:00
msg "Done %s.torrent" "$1"
}
sync_dir(){
eval_edition "$1"
2015-12-04 23:08:27 +01:00
prepare_transfer "$1"
${torrent_create} && create_torrent "$1"
2015-12-04 23:08:27 +01:00
${remote_create} && create_subtree "$1"
msg "Start upload [%s] (%s) ..." "$1" "${arch}"
2015-12-04 23:08:27 +01:00
rsync ${rsync_args[*]} ${src_dir}/ ${sf_url}/${remote_dir}/
msg "Done upload [%s]" "$1"
show_elapsed_time "${FUNCNAME}" "${timer_start}"
2015-11-12 19:03:21 +01:00
}