Closed2
Ansible copyモジュールでディレクトリコピーができない。
- name: check git
stat:
path: "/tmp/github_clone/contrib/completion"
register: chk_file_git
- name: git directory create
ansible.builtin.file:
path: /usr/local/git/contrib/
state: directory
become: yes
become_user: root
- name: completion copy
ansible.builtin.copy:
src: /tmp/github_clone/contrib/completion/
dest: /usr/local/git/contrib/
when: chk_file_git.stat.isdir == true
become: yes
become_user: root
コピーされん。。
ansible.builtin.copy
では機能しないので
単純にcopy
を利用すればよい話だった。
このスクラップは2022/03/23にクローズされました