summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/configs/modules/ssh_keys_generate.yaml
diff options
context:
space:
mode:
authorJoshua Powers <josh.powers@canonical.com>2017-10-02 14:32:48 -0700
committerScott Moser <smoser@brickies.net>2017-10-03 09:01:30 -0400
commit0ee829f91322ae1788ee6fb2a164cf06cdfff7db (patch)
treed5e5f6505eebf9784d60644c254f1d7cb422e51d /tests/cloud_tests/configs/modules/ssh_keys_generate.yaml
parent9d2a87dc386b7aed1a8243d599676e78ed358749 (diff)
downloadvyos-cloud-init-0ee829f91322ae1788ee6fb2a164cf06cdfff7db.tar.gz
vyos-cloud-init-0ee829f91322ae1788ee6fb2a164cf06cdfff7db.zip
tests: Combine integration configs and testcases
Combine the configs and testcases directories, so all files are together in one place. Update the test config location as well.
Diffstat (limited to 'tests/cloud_tests/configs/modules/ssh_keys_generate.yaml')
-rw-r--r--tests/cloud_tests/configs/modules/ssh_keys_generate.yaml44
1 files changed, 0 insertions, 44 deletions
diff --git a/tests/cloud_tests/configs/modules/ssh_keys_generate.yaml b/tests/cloud_tests/configs/modules/ssh_keys_generate.yaml
deleted file mode 100644
index 659fd939..00000000
--- a/tests/cloud_tests/configs/modules/ssh_keys_generate.yaml
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# SSH keys generated using cloud-init
-#
-required_features:
- - ubuntu_user
-cloud_config: |
- #cloud-config
- ssh_genkeytypes:
- - ecdsa
- - ed25519
- authkey_hash: sha512
-collect_scripts:
- auth_keys_root: |
- #!/bin/bash
- cat /root/.ssh/authorized_keys
- auth_keys_ubuntu: |
- #!/bin/bash
- cat /home/ubuntu/ssh/authorized_keys
- dsa_public: |
- #!/bin/bash
- cat /etc/ssh/ssh_host_dsa_key.pub
- dsa_private: |
- #!/bin/bash
- cat /etc/ssh/ssh_host_dsa_key
- rsa_public: |
- #!/bin/bash
- cat /etc/ssh/ssh_host_rsa_key.pub
- rsa_private: |
- #!/bin/bash
- cat /etc/ssh/ssh_host_rsa_key
- ecdsa_public: |
- #!/bin/bash
- cat /etc/ssh/ssh_host_ecdsa_key.pub
- ecdsa_private: |
- #!/bin/bash
- cat /etc/ssh/ssh_host_ecdsa_key
- ed25519_public: |
- #!/bin/bash
- cat /etc/ssh/ssh_host_ed25519_key.pub
- ed25519_private: |
- #!/bin/bash
- cat /etc/ssh/ssh_host_ed25519_key
-
-# vi: ts=4 expandtab