mirror of
				https://github.com/samuelclay/NewsBlur.git
				synced 2025-11-01 09:09:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			445 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			445 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
- hosts: work
 | 
						|
  gather_facts: false
 | 
						|
  vars_files:
 | 
						|
    - env_vars/base.yml
 | 
						|
    - env_vars/dev.yml
 | 
						|
 | 
						|
  tasks:
 | 
						|
    - name: Pull newsblur_web github
 | 
						|
      git:
 | 
						|
        repo: https://github.com/samuelclay/NewsBlur.git
 | 
						|
        dest: /srv/newsblur/
 | 
						|
        version: dashboard3
 | 
						|
      register: pulled
 | 
						|
    
 | 
						|
    - name: Reload celery
 | 
						|
      become: yes
 | 
						|
      command: "docker kill --signal=HUP task-work"
 | 
						|
      when: '"task-work" in inventory_hostname'
 |