From 39bd6fc2a483429381ffae0d1526ce0d40620305 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Mon, 24 Feb 2014 20:23:59 -0500 Subject: [PATCH] add doc/status.txt --- doc/status.txt | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 doc/status.txt diff --git a/doc/status.txt b/doc/status.txt new file mode 100644 index 00000000..9c2f4b89 --- /dev/null +++ b/doc/status.txt @@ -0,0 +1,51 @@ +cloud-init will keep a 'status' file up to date for other applications +wishing to use it to determine cloud-init status. + +It will manage 2 files: + status.json + finished.json + +The files will be written to /var/lib/cloud/data/ . +A symlink will be created in /run/cloud-init. The link from /run is to ensure +that if the file exists, it is not stale for this boot. + +status.json's format is: + { + 'v1': { + 'init': { + errors: [] # list of strings for each error that occurred + start: integer # time.time() that this stage started or None + end: integer # time.time() that this stage finished or None + }, + 'init-local': { + 'errors': [], 'start': , 'end' # (same as 'init' above) + }, + 'modules-config': { + 'errors': [], 'start': , 'end' # (same as 'init' above) + }, + 'modules-final': { + 'errors': [], 'start': , 'end' # (same as 'init' above) + }, + 'datasource': string describing datasource found or None + 'stage': string representing stage that is currently running + ('init', 'init-local', 'modules-final', 'modules-config', None) + if None, then no stage is running. Reader must read the start/end + of each of the above stages to determine the state. + } + +finished.json's format is: + { + 'datasource': string describing the datasource found + 'errors': [] # list of errors reported + } + +Thus, to determine if cloud-init is finished: + fin = "/run/cloud-init/finished.json" + if os.path.exists(fin): + ret = json.load(open(fin, "r")) + if len(ret): + print "Finished with errors:" + "\n".join(ret['errors']) + else: + print "Finished no errors" + else: + print "Not Finished"