summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/fetch/setup_unreadable_test.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
commit8a754e0858d922e955e71b253c139e071ecec432 (patch)
tree527d16e74bfd1840c85efd675fdecad056c54107 /test/integration/targets/fetch/setup_unreadable_test.yml
parentInitial commit. (diff)
downloadansible-core-8a754e0858d922e955e71b253c139e071ecec432.tar.xz
ansible-core-8a754e0858d922e955e71b253c139e071ecec432.zip
Adding upstream version 2.14.3.upstream/2.14.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/integration/targets/fetch/setup_unreadable_test.yml')
-rw-r--r--test/integration/targets/fetch/setup_unreadable_test.yml40
1 files changed, 40 insertions, 0 deletions
diff --git a/test/integration/targets/fetch/setup_unreadable_test.yml b/test/integration/targets/fetch/setup_unreadable_test.yml
new file mode 100644
index 0000000..f4cc8c1
--- /dev/null
+++ b/test/integration/targets/fetch/setup_unreadable_test.yml
@@ -0,0 +1,40 @@
+- name: Create a user account and configure ssh access
+ hosts: testhost
+ gather_facts: no
+
+ tasks:
+ - import_role:
+ name: fetch_tests
+ tasks_from: setup.yml
+ vars:
+ # Keep the remote temp dir and cache the remote_tmp_dir fact. The directory itself
+ # and the fact that contains the path are needed in a separate ansible-playbook run.
+ setup_remote_tmp_dir_skip_cleanup: yes
+ setup_remote_tmp_dir_cache_path: yes
+ skip_cleanup: yes
+
+ # This prevents ssh access. It is fixed in some container images but not all.
+ # https://github.com/ansible/distro-test-containers/pull/70
+ - name: Remove /run/nologin
+ file:
+ path: /run/nologin
+ state: absent
+
+ # Setup ssh access for the unprivileged user.
+ - name: Get home directory for temporary user
+ command: echo ~fetcher
+ register: fetcher_home
+
+ - name: Create .ssh dir
+ file:
+ path: "{{ fetcher_home.stdout }}/.ssh"
+ state: directory
+ owner: fetcher
+ mode: '0700'
+
+ - name: Configure authorized_keys
+ copy:
+ src: "~root/.ssh/authorized_keys"
+ dest: "{{ fetcher_home.stdout }}/.ssh/authorized_keys"
+ owner: fetcher
+ mode: '0600'