Ubuntu Pastebin

Paste from smoser at Mon, 11 Dec 2017 16:36:13 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
$ lxc launch ubuntu-daily:bionic bdemo
Creating bdemo
Starting bdemo

$ sleep 10
$ lxc exec bdemo cat /run/cloud-init/instance-data.json
{
 "base64-encoded-keys": [
  "ds/user-data",
  "ds/vendor-data"
 ],
 "ds": {
  "meta-data": {
   "dsmode": "net",
   "instance-id": "bdemo",
   "local-hostname": "bdemo"
  },
  "user-data": "I2Nsb3VkLWNvbmZpZwp7fQoK",
  "vendor-data": "I2Nsb3VkLWNvbmZpZwp7fQoK"
 },
 "v1": {
  "availability-zone": null,
  "cloud-name": "nocloud",
  "instance-id": "bdemo",
  "local-hostname": "bdemo",
  "region": null
 }
}


$ lxc exec bdemo cat /run/cloud-init/status.json
{
 "v1": {
  "datasource": "DataSourceNoCloud [seed=/var/lib/cloud/seed/nocloud-net][dsmode=net]",
  "init": {
   "errors": [],
   "finished": 1513009818.1142952,
   "start": 1513009817.2472854
  },
  "init-local": {
   "errors": [],
   "finished": 1513009812.3798182,
   "start": 1513009812.1561992
  },
  "modules-config": {
   "errors": [],
   "finished": 1513009819.4360998,
   "start": 1513009818.920614
  },
  "modules-final": {
   "errors": [],
   "finished": 1513009820.1630108,
   "start": 1513009819.8554742
  },
  "stage": null
 }
}
Download as text