diff options
author | Julien Castets <castets.j@gmail.com> | 2017-04-25 09:06:13 +0000 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2017-07-17 17:10:18 -0400 |
commit | e80517ae6aea49c9ab3bd622a33fee44014f485f (patch) | |
tree | efadd114eb7bfd655fa307b13d95b5412dc8be63 /cloudinit/settings.py | |
parent | be8e84b3639d41202a4e1ce7626b2053498fecdb (diff) | |
download | vyos-cloud-init-e80517ae6aea49c9ab3bd622a33fee44014f485f.tar.gz vyos-cloud-init-e80517ae6aea49c9ab3bd622a33fee44014f485f.zip |
Scaleway: add datasource with user and vendor data for Scaleway.
Here we add and enable by default a datasource for Scaleway cloud.
The datasource quickly exits unless one of three things:
a.) 'Scaleway' found as the system vendor
b.) 'scaleway' found on the kernel command line.
c.) the directory /var/run/scaleway exists (this is currently created
by the scaleway initramfs module).
One interesting bit of this particular datasource is that it requires
the source port of the http request to be < 1024.
Diffstat (limited to 'cloudinit/settings.py')
-rw-r--r-- | cloudinit/settings.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cloudinit/settings.py b/cloudinit/settings.py index 0abd8a4a..c120498f 100644 --- a/cloudinit/settings.py +++ b/cloudinit/settings.py @@ -35,6 +35,7 @@ CFG_BUILTIN = { 'CloudStack', 'SmartOS', 'Bigstep', + 'Scaleway', # At the end to act as a 'catch' when none of the above work... 'None', ], |