Revert "Merge branch 'ver1.0' into 'main'"

This reverts merge request !2
This commit is contained in:
정훈 변
2024-08-22 14:51:01 +09:00
parent 5119e7b95e
commit b44c107d88
71 changed files with 1 additions and 5241 deletions

View File

@@ -1,24 +0,0 @@
---
- name: Create exemONE Agent Directory
ansible.builtin.file:
path: "{{ EXEM_HOME }}"
state: directory
mode: '0755'
- name: Copy exemONE Container-Agent File
# ansible.posix.synchronize:
ansible.builtin.copy:
src: "{{ role_path }}/files/container"
dest: "{{ EXEM_HOME }}"
- name: Create Agent Script
ansible.builtin.template:
src: "{{ item }}.j2"
dest: "{{ EXEM_HOME }}/container/script/binary_mode/{{ item }}"
mode: '0755'
with_items:
- start.sh
- stop.sh
- name: exem-container-agent start
ansible.builtin.shell: "nohup {{ EXEM_HOME }}/container/script/binary_mode/start.sh"