ansible-role-springboot icon indicating copy to clipboard operation
ansible-role-springboot copied to clipboard

Ansible role that install Spring boot application as a service. Support init.d & Systemd

Results 1 ansible-role-springboot issues
Sort by recently updated
recently updated
newest added

add in file tasks/service.yml - name: "Service | Ensure {{ sb_app_name }} service is started" service: name: "{{ sb_app_name | lower }}" enabled: yes daemon_reload: yes state: started become: true