diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-06-15 13:34:56 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-06-15 13:34:56 -0400 |
commit | a9f600c4fb7426661c478f043791795ddbabb69a (patch) | |
tree | c18bd8c4f900c9f2d6d47b5e886dfac4df205212 | |
parent | 1be9cf367d765a3c87995a5f4084c2bf3dff6f78 (diff) | |
download | vyos-cloud-init-a9f600c4fb7426661c478f043791795ddbabb69a.tar.gz vyos-cloud-init-a9f600c4fb7426661c478f043791795ddbabb69a.zip |
add vi modelines to python files
-rwxr-xr-x | cloud-init-cfg.py | 1 | ||||
-rwxr-xr-x | cloud-init-run-module.py | 1 | ||||
-rwxr-xr-x | cloud-init.py | 1 | ||||
-rw-r--r-- | cloudinit/CloudConfig.py | 1 | ||||
-rw-r--r-- | cloudinit/DataSource.py | 2 | ||||
-rw-r--r-- | cloudinit/DataSourceEc2.py | 2 | ||||
-rw-r--r-- | cloudinit/UserDataHandler.py | 2 | ||||
-rw-r--r-- | cloudinit/__init__.py | 1 | ||||
-rw-r--r-- | cloudinit/execute.py | 2 | ||||
-rw-r--r-- | cloudinit/util.py | 2 | ||||
-rwxr-xr-x | setup.py | 1 |
11 files changed, 16 insertions, 0 deletions
diff --git a/cloud-init-cfg.py b/cloud-init-cfg.py index 8c332abb..8684c532 100755 --- a/cloud-init-cfg.py +++ b/cloud-init-cfg.py @@ -1,4 +1,5 @@ #!/usr/bin/python +# vi: ts=4 expandtab # # Copyright (C) 2009-2010 Canonical Ltd. # diff --git a/cloud-init-run-module.py b/cloud-init-run-module.py index 028129bf..f7299f46 100755 --- a/cloud-init-run-module.py +++ b/cloud-init-run-module.py @@ -1,4 +1,5 @@ #!/usr/bin/python +# vi: ts=4 expandtab # # Copyright (C) 2009-2010 Canonical Ltd. # diff --git a/cloud-init.py b/cloud-init.py index 68cc30bc..15a98957 100755 --- a/cloud-init.py +++ b/cloud-init.py @@ -1,4 +1,5 @@ #!/usr/bin/python +# vi: ts=4 expandtab # # Copyright (C) 2009-2010 Canonical Ltd. # diff --git a/cloudinit/CloudConfig.py b/cloudinit/CloudConfig.py index 3f965f39..9c050abc 100644 --- a/cloudinit/CloudConfig.py +++ b/cloudinit/CloudConfig.py @@ -1,3 +1,4 @@ +# vi: ts=4 expandtab # # Copyright (C) 2008-2010 Canonical Ltd. # diff --git a/cloudinit/DataSource.py b/cloudinit/DataSource.py index 07e08a36..858608cc 100644 --- a/cloudinit/DataSource.py +++ b/cloudinit/DataSource.py @@ -1,3 +1,5 @@ +# vi: ts=4 expandtab +# # Copyright (C) 2009-2010 Canonical Ltd. # # Author: Scott Moser <scott.moser@canonical.com> diff --git a/cloudinit/DataSourceEc2.py b/cloudinit/DataSourceEc2.py index 750baab3..ad88a704 100644 --- a/cloudinit/DataSourceEc2.py +++ b/cloudinit/DataSourceEc2.py @@ -1,3 +1,5 @@ +# vi: ts=4 expandtab +# # Copyright (C) 2009-2010 Canonical Ltd. # # Author: Scott Moser <scott.moser@canonical.com> diff --git a/cloudinit/UserDataHandler.py b/cloudinit/UserDataHandler.py index 1c9cee27..b2c6e174 100644 --- a/cloudinit/UserDataHandler.py +++ b/cloudinit/UserDataHandler.py @@ -1,3 +1,5 @@ +# vi: ts=4 expandtab +# # Copyright (C) 2009-2010 Canonical Ltd. # # Author: Scott Moser <scott.moser@canonical.com> diff --git a/cloudinit/__init__.py b/cloudinit/__init__.py index 1d8a1898..a48c8ab3 100644 --- a/cloudinit/__init__.py +++ b/cloudinit/__init__.py @@ -1,3 +1,4 @@ +# vi: ts=4 expandtab # # Common code for the EC2 initialisation scripts in Ubuntu # Copyright (C) 2008-2009 Canonical Ltd diff --git a/cloudinit/execute.py b/cloudinit/execute.py index b250e354..eb7b568c 100644 --- a/cloudinit/execute.py +++ b/cloudinit/execute.py @@ -1,3 +1,5 @@ +# vi: ts=4 expandtab +# # Copyright (C) 2009-2010 Canonical Ltd. # # Author: Scott Moser <scott.moser@canonical.com> diff --git a/cloudinit/util.py b/cloudinit/util.py index f1a0d50d..1c838fa8 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -1,3 +1,5 @@ +# vi: ts=4 expandtab +# # Copyright (C) 2009-2010 Canonical Ltd. # # Author: Scott Moser <scott.moser@canonical.com> @@ -1,4 +1,5 @@ #!/usr/bin/python +# vi: ts=4 expandtab # # Distutils magic for ec2-init # Copyright (C) 2009 Canonical Ltd. |