Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Add support for Ubuntu yakkety
Browse files Browse the repository at this point in the history
No need for you to try it, I downloaded the ISO and verified myself.

Fix #6643

Auditors: @aekeus
  • Loading branch information
bbondy committed Feb 2, 2017
1 parent dfc23a2 commit cfa3186
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tools/upload_to_aptly
Original file line number Diff line number Diff line change
Expand Up @@ -44,34 +44,34 @@ gpg --export --armor ${GPG_KEY} > ${KEY_FILE}
aws s3 cp ${KEY_FILE} s3://${OPTION}/keys.asc
aws s3api put-object-acl --acl public-read --bucket ${OPTION} --key ${KEY_NAME}

for i in xenial jessie trusty
for i in yakkety xenial jessie trusty
do aptly publish drop -force-drop $i s3:${OPTION}: || true
done

for i in xenial jessie trusty
for i in yakkety xenial jessie trusty
do aptly repo drop -force ${i}-release || true
done

for i in xenial jessie trusty
for i in yakkety xenial jessie trusty
do aptly snapshot drop -force ${i}-snapshot || true
done

for i in xenial jessie trusty
for i in yakkety xenial jessie trusty
do aptly repo create -distribution=$i -component=main ${i}-release
done

for i in xenial jessie trusty
for i in yakkety xenial jessie trusty
do aptly repo add ${i}-release dist/*.deb
done

for i in xenial jessie trusty
for i in yakkety xenial jessie trusty
do aptly snapshot create ${i}-snapshot from repo ${i}-release
done

for i in xenial jessie trusty
for i in yakkety xenial jessie trusty
do aptly repo edit ${i}-release
done

for i in xenial jessie trusty
for i in yakkety xenial jessie trusty
do aptly publish snapshot -force-overwrite=true -passphrase=$PASSPHRASE -gpg-key=${GPG_KEY} ${i}-snapshot s3:${OPTION}:
done

1 comment on commit cfa3186

@aekeus
Copy link
Member

@aekeus aekeus commented on cfa3186 Feb 3, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

Please sign in to comment.