removed never tag from installdeps task

This commit is contained in:
muppeth 2024-04-08 12:03:56 +02:00
parent c3e2562992
commit b73116e859
Signed by: muppeth
GPG Key ID: 0EBC7B9848D04031
3 changed files with 7 additions and 6 deletions

View File

@ -11,4 +11,5 @@ kuma_app_dir: '{{ kuma_homedir }}/app'
kuma_version: '1.23.11'
kuma_pkg:
- nodejs
kuma_node_version: '18'
kuma_node_version: '18'
kuma_pm2_binpath: '/usr/bin/pm2'

View File

@ -5,7 +5,8 @@
- name: "[KUMA] - Clone repo"
include_tasks: git.yml
tags: update
tags:
- update
- name: "[KUMA] - Install dependencies"
include_tasks: installdeps.yml
@ -14,7 +15,6 @@
include_tasks: installapp.yml
tags:
- update
- never
- name: "[KUMA] - Deploy systemd"
include_tasks: systemd.yml
include_tasks: systemd.yml

View File

@ -7,8 +7,8 @@ After=network.target
Type=simple
User={{ kuma_username }}
WorkingDirectory={{ kuma_app_dir }}
ExecStart=/usr/bin/pm2 start server/server.js --name uptime-kuma
ExecStart={{ kuma_pm2_binpath }} start server/server.js --name uptime-kuma
Restart=on-failure
[Install]
WantedBy=multi-user.target
WantedBy=multi-user.target