1
0
Fork 0
forked from ahurac/dotfiles

Ajout : nouvelles fonctionnalités non-testées sur mcserv

This commit is contained in:
Hippolyte Chauvin 2023-07-04 20:24:37 +02:00
parent a73208b0a5
commit de6e7df68c

View file

@ -1,7 +1,16 @@
#!/bin/bash #!/bin/bash
shopt -s expand_aliases exec_user() {
alias mcscreen='sudo -u minecraft screen' if [ "$USER" != "$1" ]; then
exec sudo -u "$1" "$0" "$@"
else
return 0
fi
}
exec_user minecraft
cd ~/bin || exit
print_error() { print_error() {
>&2 printf '\033[31;1m%s\033[0m \033[1m%s\033[0m\n' ERROR: "$*" >&2 printf '\033[31;1m%s\033[0m \033[1m%s\033[0m\n' ERROR: "$*"
@ -26,8 +35,8 @@ error_usage() {
public_start() { public_start() {
if [ -n "$1" ]; then if [ -n "$1" ]; then
mcscreen -d -m -S "$1" \ screen -d -m -S "$1" \
"/srv/minecraft/bin/${1}" "./${1}"
else else
error_usage error_usage
fi fi
@ -36,7 +45,7 @@ public_start() {
public_status() { public_status() {
if [ -n "$1" ]; then if [ -n "$1" ]; then
printf '\033[1m%s\033[0m : ' "$1" printf '\033[1m%s\033[0m : ' "$1"
if mcscreen -ls "$1" > /dev/null 2>&1; then if screen -ls "$1" > /dev/null 2>&1; then
echo "en cours d'exécution" echo "en cours d'exécution"
else else
echo "non en cours d'exécution" echo "non en cours d'exécution"
@ -48,26 +57,33 @@ public_status() {
public_stop() { public_stop() {
if [ -n "$1" ]; then if [ -n "$1" ]; then
mcscreen -S "$1" -X stuff '^E^Ustop^M' screen -S "$1" -X stuff '^E^Ustop^M'
else else
error_usage error_usage
fi fi
} }
public_watch() { public_watch() {
mcscreen -dr "$1" screen -dr "$1"
}
public_active() {
screen -ls
} }
public_list() { public_list() {
mcscreen -ls echo "Serveurs disponibles :"
ls --color=auto
} }
verb="$1" verb="$1"
shift shift
case "$verb" in case "$verb" in
start|status|stop|watch|list|usage) start|status|stop|watch|active|list|usage)
"public_${verb}" "$@" "public_${verb}" "$@"
;; ;;
"")
public_active
*) *)
error_usage error_usage
;; ;;