8 lines
104 B
Bash
Executable File
8 lines
104 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Stop the Gitea service before updating/removal
|
|
systemctl stop gitea || true
|
|
|
|
exit 0
|