mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-12-12 01:04:30 -05:00
7 lines
149 B
Plaintext
7 lines
149 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
|
||
|
deb-systemd-invoke stop 'veilid-server.service' >/dev/null || true
|
||
|
fi
|