Comment 21 for bug 1629797

Revision history for this message
Scott Moser (smoser) wrote :

Marking this verified.
I booted an instance in gce.

## launch an instance
  project="smoser-00"
  # from gcloud compute images list ubuntu-1604-xenial-v20161115
  img="/ubuntu-os-cloud/ubuntu-1604-xenial-v20161115"
  name="smfoo3"
  zone="us-east1-b"
  mtype="f1-micro"
  gcloud compute "--project=$project" instances create "$name" \
  "--zone=$zone" "--machine-type=$mtype" --network=default \
  "--maintenance-policy=MIGRATE" \
   --image="$img" \
   --boot-disk-size=10 --boot-disk-type=pd-standard \
   "--boot-disk-device-name=$name"

## ssh in
# get htools for saving logs and such
% git clone https://gist.github.com/29ea35a797c0df1fcb6ac875a024efa9.git htools
% sudo ./htools/save-old-data orig-boot
  new instance local: not found
  new instance net : not found
  reformattable: not found
  disk_setup ran: true
  mounts ran: true
  proc-mounts:
  /etc/fstab:

% sudo ./htools/enable-proposed
deb http://us-east1.gce.archive.ubuntu.com/ubuntu/ xenial-proposed main universe
% sudo apt-get update -qy && sudo apt-get install cloud-init -qy
% dpkg-query --show cloud-init
cloud-init 0.7.8-49-g9e904bb-0ubuntu1~16.04.1

% sudo ./htools/do-reboot clean
cleared /var/lib/cloud
cleared logs
rebooting

# ssh back in
% cat /proc/uptime
29.78 19.66
% journalctl --full --no-pager | grep -i "ordering" || echo no order
no order
% journalctl --full --no-pager | grep -i "break" || echo no break

%