diff options
-rwxr-xr-x | publish.sh | 2 | ||||
-rwxr-xr-x | sign.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/publish.sh b/publish.sh index 39a741b90fc..64f2bf9fc1f 100755 --- a/publish.sh +++ b/publish.sh @@ -26,6 +26,6 @@ do for f in release/$vers/ceph_${dvers}_*.changes do - reprepro -b $repo -C $component --ignore=wrongdistribution include $dist $f + reprepro --ask-passphrase -b $repo -C $component --ignore=wrongdistribution include $dist $f done done @@ -13,7 +13,7 @@ do if head -1 release/$vers/$f | grep -q 'BEGIN PGP SIGNED MESSAGE' ; then echo already signed $f else - debsign release/$vers/$f + debsign -k288995c8 release/$vers/$f fi fi -done
\ No newline at end of file +done |