mirror of
https://github.com/chatmail/relay.git
synced 2026-05-11 08:24:37 +00:00
6 lines
111 B
Bash
6 lines
111 B
Bash
#!/bin/sh
|
|
set -e
|
|
EVENT_NAME="$1"
|
|
[ "$EVENT_NAME" = "live-updated" ] || exit 42
|
|
systemctl restart nginx.service
|