This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tsg-tsg-os-buildimage/tsg-9140-scripts/roles/init_runtime/tasks/main.yml

14 lines
387 B
YAML

- name: "init_runtime: copy init_runtime scripts to docker"
copy:
src: "{{ role_path }}/files/init_runtime"
dest: /opt/tsg/
mode: 0644
- name: "init_runtime: chmod 0755 for exec_init_runtime.sh and exec_rollback.sh"
file:
path: "{{ item }}"
mode: '0755'
with_items:
- /opt/tsg/init_runtime/exec_init_runtime.sh
- /opt/tsg/init_runtime/exec_rollback.sh