mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-27 20:41:37 +02:00
9 lines
175 B
Bash
9 lines
175 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Exit immediately if a command exits with a non-zero status
|
||
|
|
set -e
|
||
|
|
# Restart the settings server
|
||
|
|
systemctl restart tooloop-settings-server
|
||
|
|
# Exit cleanly
|
||
|
|
exit 0
|