From b24e4877067ca0bb42ab7ec7bbb7db21ed38be65 Mon Sep 17 00:00:00 2001 From: Dawa Ometto Date: Tue, 21 May 2024 13:21:23 +0200 Subject: [PATCH] Remove superfluous playbooks dir --- playbooks/library | 1 - playbooks/test.yml | 23 ----------------------- 2 files changed, 24 deletions(-) delete mode 120000 playbooks/library delete mode 100644 playbooks/test.yml diff --git a/playbooks/library b/playbooks/library deleted file mode 120000 index 6088df8..0000000 --- a/playbooks/library +++ /dev/null @@ -1 +0,0 @@ -../plugins/modules \ No newline at end of file diff --git a/playbooks/test.yml b/playbooks/test.yml deleted file mode 100644 index c17c1b7..0000000 --- a/playbooks/test.yml +++ /dev/null @@ -1,23 +0,0 @@ -- name: Test ibridges module - hosts: localhost - vars_prompt: - - name: password - prompt: Enter iRODS password - - name: env_file - prompt: Enter absolute path to irods environment file - private: false - - name: irods_path - prompt: Enter path to copy from irods - private: false - - name: local_path - prompt: Enter path to copy to locally - private: false - - tasks: - - name: Download testdata to localhost - ibridges: - state: present - env_file: "{{ env_file }}" - irods_path: "{{ irods_path }}" - local_path: "{{ local_path }}" - password: "{{ password }}"