Some checks failed
		
		
	
	/ Ansible Lint (push) Failing after 1m53s
				
			https://github.com/netbox-community/netbox/releases/tag/v4.4.0 https://github.com/netbox-community/netbox/issues/18349
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			425 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			425 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
- name: Run upgrade script
 | 
						|
  ansible.builtin.command: /opt/netbox/upgrade.sh
 | 
						|
  become: true
 | 
						|
  # When it runs, this should always report changed.
 | 
						|
  changed_when: true
 | 
						|
 | 
						|
- name: Ensure netbox systemd services are set up and up-to-date
 | 
						|
  ansible.builtin.systemd_service:
 | 
						|
    daemon_reload: true
 | 
						|
    name: "{{ item }}"
 | 
						|
    enabled: true
 | 
						|
    state: restarted
 | 
						|
  become: true
 | 
						|
  loop:
 | 
						|
    - "netbox.service"
 | 
						|
    - "netbox-rq.service"
 |