manjaro-tools/bin/deployiso.in

122 lines
3.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(){
prepare_transfer "$1" "${hidden}"
2016-09-15 23:58:18 +02:00
info "Profile: [$1]"
msg2 "project: %s" "${project}"
2016-09-15 23:58:18 +02:00
msg2 "src_dir: ${src_dir}"
msg2 "remote dir: ${url}/${target_dir}"
2015-11-23 20:02:56 +01:00
}
display_settings(){
2016-09-15 23:58:18 +02:00
show_version
show_config
msg "PROFILE:"
msg2 "build_lists: %s" "$(show_build_lists ${list_dir_iso})"
msg2 "build_list_iso: %s" "${build_list_iso}"
msg2 "is_build_list: %s" "${is_build_list}"
msg "OPTIONS:"
[[ -z ${limit} ]] && msg2 "bandwidth limit: no" || msg2 "bandwidth limit: %s kB/s" "${limit}"
2016-09-15 23:58:18 +02:00
msg2 "dist_release: %s" "${dist_release}"
msg "ARGS:"
msg2 "update: %s" "${update}"
msg2 "verbose: %s" "${verbose}"
2018-04-15 17:02:39 +02:00
msg2 "signiso: %s" "${sign}"
msg2 "torrent: %s" "${torrent}"
2018-04-14 00:07:43 +02:00
if ${torrent}; then
msg2 "tracker_url: %s" "${tracker_url}"
msg2 "piece_size: %s" "${piece_size}"
2017-02-13 12:26:10 +01:00
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 "alt_storage: %s" "${alt_storage}"
2018-04-15 20:10:20 +02:00
msg2 "ssh_agentt: %s" "${ssh_agent}"
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
2016-06-14 17:54:44 +02:00
load_config "${USERCONFDIR}/manjaro-tools.conf" || load_config "${SYSCONFDIR}/manjaro-tools.conf"
2015-12-03 12:02:23 +01:00
run_dir=${cache_dir_iso}
hidden=false
pretend=false
torrent=false
update=false
2015-11-26 12:24:55 +01:00
verbose=false
2018-04-15 17:02:39 +02:00
sign=false
2018-04-29 14:29:27 +02:00
rsync_args=(-aP -e ssh)
2015-11-12 12:25:35 +01:00
usage() {
2016-09-15 23:58:18 +02:00
echo "Usage: ${0##*/} [options]"
echo ' -d Use hidden remote directory'
2018-04-15 01:34:08 +02:00
echo ' -h This help'
2018-04-15 20:42:56 +02:00
echo " -l Limit bandwidth in kB/s [default: ${limit}]"
echo " -p Source folder to upload [default: ${build_list_iso}]"
2016-09-15 23:58:18 +02:00
echo ' -q Query settings and pretend upload'
2018-04-15 17:02:39 +02:00
echo ' -s Sign ISO and create checksums'
2018-04-15 20:42:56 +02:00
echo ' -t Create ISO torrent'
2018-04-15 01:34:08 +02:00
echo ' -u Update remote directory'
2016-09-15 23:58:18 +02:00
echo ' -v Verbose output'
echo ''
echo ''
exit $1
}
2018-04-15 17:02:39 +02:00
opts='dhl:p:qstuv'
while getopts "${opts}" arg; do
2016-09-15 23:58:18 +02:00
case "${arg}" in
d) hidden=true ;;
l) limit="$OPTARG"; rsync_args+=(--bwlimit=${limit}) ;;
2018-04-14 01:42:35 +02:00
p) build_list_iso="$OPTARG" ;;
2016-09-15 23:58:18 +02:00
q) pretend=true; rsync_args+=(-n) ;;
2018-04-15 17:02:39 +02:00
s) sign=true ;;
2018-04-14 01:42:35 +02:00
t) torrent=true ;;
u) update=true; rsync_args+=(-u) ;;
v) verbose=true; rsync_args+=(-v --stats) ;;
2016-09-15 23:58:18 +02:00
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
${pretend} && display_settings && exit 1
2016-06-09 18:03:38 +02:00
run sync_dir "${build_list_iso}"