diff --git a/testsite/hosts b/testsite/hosts index bc3d1c1da5852f54e65fc78a07cf0bf0298c2692..c575fcb76445357bb41c291e2de345caf769a7a8 100644 --- a/testsite/hosts +++ b/testsite/hosts @@ -1,2 +1,5 @@ [preseed] localhost ansible_connection=local + +[ldap] +ldap.example.com diff --git a/testsite/playbooks/bootstrap.yml b/testsite/playbooks/bootstrap.yml new file mode 100644 index 0000000000000000000000000000000000000000..57d2caa36ee67979970312ee10cf51035c679949 --- /dev/null +++ b/testsite/playbooks/bootstrap.yml @@ -0,0 +1,8 @@ +--- + +- hosts: "{{ server }}" + remote_user: root + roles: + - bootstrap + vars: + ansible_key: "{{ lookup('file', '~/.ssh/id_rsa.pub') }}" \ No newline at end of file