]> git.donarmstrong.com Git - bin.git/blob - sign_debian_r
add reset usb bus command
[bin.git] / sign_debian_r
1 #!/bin/sh
2
3 KEY=9D05D0BE
4 HOST=ignes.int.donarmstrong.com
5
6 HAVE_CHANGES=0
7
8 for changes in $(ssh ${HOST} find ~/c2d/build_results_$1/ -type f -iname '\*.changes'); do
9     HAVE_CHANGES=1
10     debsign -k9D05D0BE -r ${HOST} $changes;
11 done;
12
13 if [ $HAVE_CHANGES == 1 ]; then
14     ssh ignes.int.donarmstrong.com dput debianr '~/c2d/build_results_$1/*.changes';
15 fi;