mirror of
https://github.com/Aviortheking/Blog_IMIE.git
synced 2025-05-21 00:29:55 +00:00
17 lines
411 B
YAML
17 lines
411 B
YAML
- hosts: hifive
|
|
|
|
tasks:
|
|
- name: Copy all files to web server
|
|
synchronize:
|
|
src: /builds/aviortheking/blog_imie/project/
|
|
dest: /var/www/html
|
|
rsync_opts:
|
|
- --exclude=.htaccess
|
|
|
|
#- name: Change file ownership, group and mode
|
|
# file:
|
|
# path: /var/www/html
|
|
# owner: gitlab
|
|
# group: apache
|
|
# mode: "u=rwx,g=r,o=r"
|
|
# recurse: yes |