SHELL BYPASS 403 |
Modern UI. Responsive. Powerful.

Faizzz-Chin Shell

: /usr/share/doc/cloud-init/ [ drwxr-xr-x ]
Uname\Kernel: Linux server.kxo.bgz.mybluehostin.me 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Server: Apache
PHP Version: 8.2.28 [ PHP INFO ]
Operating System: Linux
Server Ip: 162.240.163.222
Your Ip: 216.73.216.114
Date Time: 2025-07-11 04:07:46
User: dilseshaadi (1027) | Group: dilseshaadi (1027)
Safe Mode: OFF
Disable Function: exec,passthru,shell_exec,system

name : status.txt
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
 result.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: float # time.time() that this stage started or None
       end: float # time.time() that this stage finished or None
     },
     'init-local': {
       'errors': [], 'start': <float>, 'end' <float> # (same as 'init' above)
     },
     'modules-config': {
       'errors': [], 'start': <float>, 'end' <float> # (same as 'init' above)
     },
     'modules-final': {
       'errors': [], 'start': <float>, 'end' <float> # (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.
   }

result.json's format is:
   {
    'v1': {
     'datasource': string describing the datasource found
     'errors': [] # list of errors reported
    }
   }

Thus, to determine if cloud-init is finished:
 fin = "/run/cloud-init/result.json"
 if os.path.exists(fin):
   ret = json.load(open(fin, "r"))
   if len(ret['v1']['errors']):
     print "Finished with errors:" + "\n".join(ret['v1']['errors'])
   else:
     print "Finished no errors"
 else:
   print "Not Finished"
© 2025 Faizzz-Chin