diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-03-22 03:29:49 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-03-22 03:29:49 -0400 |
commit | 9e05dd2d21f3db77607f1e4aa53a4657514a4fce (patch) | |
tree | 247f8049b34d8d5fb0dc05cd78be8bbb1db91327 /cloudinit/sources/DataSourceAzure.py | |
parent | 3a3f960d5cfee60766e7de9e1fced537cac72106 (diff) | |
parent | 6ce134c1868478345471ba9166f1523f7d9bf19d (diff) | |
download | vyos-cloud-init-9e05dd2d21f3db77607f1e4aa53a4657514a4fce.tar.gz vyos-cloud-init-9e05dd2d21f3db77607f1e4aa53a4657514a4fce.zip |
merge from trunk.net1
Diffstat (limited to 'cloudinit/sources/DataSourceAzure.py')
-rw-r--r-- | cloudinit/sources/DataSourceAzure.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py index 2af0ad9b..832b3063 100644 --- a/cloudinit/sources/DataSourceAzure.py +++ b/cloudinit/sources/DataSourceAzure.py @@ -254,6 +254,10 @@ class DataSourceAzureNet(sources.DataSource): def get_config_obj(self): return self.cfg + def check_instance_id(self): + # quickly (local check only) if self.instance_id is still valid + return sources.instance_id_matches_system_uuid(self.get_instance_id()) + def count_files(mp): return len(fnmatch.filter(os.listdir(mp), '*[!cdrom]*')) |