123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #!/bin/sh
-
- . gconfig
-
- TUSER=ubuntu
- QUIET_FLAG=
-
- usage() {
- echo "Usage: ${0##*/} [OPTION]... <command>"
- echo "Run command on build target."
- echo
- cat << EOF
- --help display this help and exit
- --user=U run as U instead of ubuntu
- EOF
- }
-
- if [ $# != 0 ] ; then
- while true ; do
- case "$1" in
- --help|-h)
- usage
- exit 0
- ;;
- --user|-u)
- TUSER="$2"
- shift 2
- ;;
- --quiet|-q)
- QUIET_FLAG="-q"
- shift 1
- ;;
- --*)
- echo "unrecognized option $1"
- exit 1
- ;;
- *)
- break
- ;;
- esac
- done
- fi
-
- if [ $# = 0 ] ; then
- usage
- exit 1
- fi
-
- if [ -z "$USE_LXC" ]; then
- scp $QUIET_FLAG -oConnectTimeout=30 -oNoHostAuthenticationForLocalhost=yes -i ${GITIAN_BASE:-.}/var/id_dsa -P $VM_SSH_PORT -r $TUSER@localhost:$1 $2
- else
- config-lxc
- sudo lxc-execute -n gitian -f var/lxc.config -- sudo -i -u $TUSER tar -cf - "$1" | tar -C "$2" -xkf -
- fi
|