diff options
author | Scott Moser <smoser@nelson> | 2010-01-07 20:18:26 -0500 |
---|---|---|
committer | Scott Moser <smoser@nelson> | 2010-01-07 20:18:26 -0500 |
commit | 399f9ede1081a01b3c4d0e461ab269d3a42a5f71 (patch) | |
tree | 8bbbe8a6a8edd1a16b039412d4352164818d74b4 /ec2init/DataSource.py | |
parent | 49d3df468a94fef41a036dfa5d886449d180e006 (diff) | |
download | vyos-cloud-init-399f9ede1081a01b3c4d0e461ab269d3a42a5f71.tar.gz vyos-cloud-init-399f9ede1081a01b3c4d0e461ab269d3a42a5f71.zip |
support getting public ssh keys from ec2 metadata service
Diffstat (limited to 'ec2init/DataSource.py')
-rw-r--r-- | ec2init/DataSource.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ec2init/DataSource.py b/ec2init/DataSource.py index af5e9208..3ada110f 100644 --- a/ec2init/DataSource.py +++ b/ec2init/DataSource.py @@ -17,3 +17,6 @@ class DataSource: def get_userdata_raw(self): return(self.userdata_raw) + + def get_public_ssh_keys(self): + return([]) |