
This will likely also be very useful to use since it ensures we safely use/parse yaml. Change-Id: Ibc0f7dee46d2f199e2d65d9bc6444bfa72383704
13 lines
219 B
Python
13 lines
219 B
Python
# Copyright 2015 Canonical Ltd.
|
|
# This file is part of cloud-init. See LICENCE file for license information.
|
|
#
|
|
# vi: ts=4 expandtab
|
|
|
|
|
|
def main():
|
|
print("Run cloudinit run!")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|