manjaro-tools/bin/deployiso.in

115 lines
3 KiB
Text
Raw Normal View History

#!/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.
version=@version@
LIBDIR='@libdir@'
SYSCONFDIR='@sysconfdir@'
[[ -r ${LIBDIR}/util-msg.sh ]] && source ${LIBDIR}/util-msg.sh
import ${LIBDIR}/util.sh
2015-11-12 19:03:51 +01:00
import ${LIBDIR}/util-publish.sh
2015-11-23 20:02:56 +01:00
show_profile(){
2016-09-15 23:58:18 +02:00
prepare_transfer "$1"
info "Profile: [$1]"
msg2 "src_dir: ${src_dir}"
msg2 "target_dir: ${target_dir}"
2015-11-23 20:02:56 +01:00
}
display_settings(){
2016-09-15 23:58:18 +02:00
show_version
show_config
2017-05-08 00:47:29 +02:00
# msg "PROFILE:"
# msg2 "build_lists: %s" "$(show_build_lists ${list_dir_iso})"
# msg2 "build_list_iso: %s" "${build_list_iso}"
2016-09-15 23:58:18 +02:00
msg2 "is_build_list: %s" "${is_build_list}"
msg "OPTIONS:"
msg2 "limit: %s kB/s" "${limit}"
msg2 "dist_release: %s" "${dist_release}"
msg "ARGS:"
msg2 "update: %s" "${update}"
msg2 "verbose: %s" "${verbose}"
msg2 "torrent: %s" "${torrent}"
if ${torrent};then
msg2 "tracker_url: %s" "${tracker_url}"
msg2 "piece_size: %s" "${piece_size}"
2017-02-13 12:26:10 +01:00
msg2 "iso_mirrors: %s" "${iso_mirrors[*]}"
msg2 "torrent_meta: %s" "${torrent_meta}"
fi
2016-09-15 23:58:18 +02:00
msg "REMOTE:"
msg2 "account: %s" "${account}"
msg2 "host: %s" "${host}"
msg2 "project: %s" "${project}"
2016-09-15 23:58:18 +02:00
msg "UPLOAD QUEUE:"
run show_profile "${build_list_iso}"
2015-11-12 17:49:38 +01:00
}
load_user_info
load_config "${MT_USERCONFDIR}/manjaro-tools.conf" || load_config "${SYSCONFDIR}/manjaro-tools.conf"
2015-12-03 12:02:23 +01:00
run_dir=${cache_dir_iso}
pretend=false
update=false
2015-11-26 12:24:55 +01:00
verbose=false
torrent=false
2015-11-26 12:24:55 +01:00
rsync_args=(-aP --progress -e ssh)
2015-11-12 12:25:35 +01:00
usage() {
2016-09-15 23:58:18 +02:00
echo "Usage: ${0##*/} [options]"
echo " -p Source folder to upload [default:${build_list_iso}]"
echo " -l Limit bandwidth in kB/s [default:${limit}]"
echo ' -u Update remote directory'
echo ' -t Create iso torrent'
2016-09-15 23:58:18 +02:00
echo ' -q Query settings and pretend upload'
echo ' -v Verbose output'
echo ' -h This help'
echo ''
echo ''
exit $1
}
2017-03-09 15:11:52 +01:00
opts='p:l:uvtqh'
while getopts "${opts}" arg; do
2016-09-15 23:58:18 +02:00
case "${arg}" in
2016-06-09 18:03:38 +02:00
p) build_list_iso="$OPTARG" ;;
2015-11-25 19:52:56 +01:00
l) limit="$OPTARG" ;;
u) update=true; rsync_args+=(-u) ;;
t) torrent=true ;;
2015-11-26 12:24:55 +01:00
v) verbose=true; rsync_args+=(-v --stats) ;;
2016-09-15 23:58:18 +02:00
q) pretend=true; rsync_args+=(-n) ;;
h|?) usage 0 ;;
*) echo "invalid argument '${arg}'"; usage 1 ;;
esac
done
shift $(($OPTIND - 1))
timer_start=$(get_timer)
2016-06-09 18:03:38 +02:00
eval_build_list "${list_dir_iso}" "${build_list_iso}"
2015-11-17 17:05:06 +01:00
2015-11-25 19:52:56 +01:00
rsync_args+=(--bwlimit=${limit})
${pretend} && display_settings && exit 1
2016-06-09 18:03:38 +02:00
run sync_dir "${build_list_iso}"