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
zhangzhihan-device-manageme…/roles/maat-redis/tasks/main.yml
zhangzhihan 960bdaa91f create
2020-01-17 15:35:48 +08:00

16 lines
333 B
YAML

- name: "copy maat-redis to destination server"
copy:
src: "{{ role_path }}/files/"
dest: /home/ceiec
mode: 0755
- name: "install maat-redis"
shell: cd /home/ceiec/maat-redis;sh install.sh
- name: "start maat-redis"
systemd:
name: maat-redis.service
state: started
daemon_reload: yes
enabled: yes