mirror of
https://github.com/Rushilwiz/crucialnet.git
synced 2025-04-03 03:20:15 -04:00
18 lines
369 B
YAML
18 lines
369 B
YAML
---
|
|
- hosts: webservers
|
|
remote_user: root
|
|
|
|
tasks:
|
|
- name: fetch latest from github repo
|
|
git:
|
|
repo: git@github.com:rushilwiz/crucialnet.git
|
|
version: master
|
|
dest: /var/www/crucialnet.org/html
|
|
accept_hostkey: yes
|
|
key_file: ~/.ssh/crucialnet_rsa
|
|
|
|
- name: restart nginx
|
|
service:
|
|
name: nginx
|
|
state: restarted
|