mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
8 lines
150 B
Bash
Executable File
8 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
|
|
deb-systemd-invoke stop 'veilid-server.service' >/dev/null || true
|
|
fi
|
|
|