Ubuntu Pastebin

Paste from Chad Smith at Tue, 2 May 2017 21:57:09 +0000

Download as text
1
2
3
4
5
6
7
8
for release in xenial yakkety zesty do;
 ref=$release-proposed;
 lxc-proposed-snapshot --proposed --publish $release $ref;
 lxc image export $ref .;
 imagefile=`ls -tr *gz | tail -n 1`
 #upload raw image to your cloud
  openstack image create --disk-format raw --container-format bare --file $imagefile testing/$ref-image.tar.gz;
  openstack server create --image testing/$ref-image.tar.gz --flavor=m1.tiny lxd-$release --key-name <your-key>;
Download as text