Compare commits

..

No commits in common. "6c092c3c0720876564ee21498b7896bd9eb8d023" and "a73208b0a50d1813596a9b7f4f6fa1dc36c1efcf" have entirely different histories.

View file

@ -1,18 +1,7 @@
#!/bin/bash #!/bin/bash
exec_user() { shopt -s expand_aliases
local user="$1" alias mcscreen='sudo -u minecraft screen'
shift
if [ "$USER" != "$user" ]; then
exec sudo -u "$user" "$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: "$*"
@ -24,7 +13,8 @@ public_usage() {
cat << EOF cat << EOF
${name}: utilisation ${name}: utilisation
${name} start|status|stop|watch NOM_SERVEUR ${name} start|status|stop|watch NOM_SERVEUR
${name} list|active|usage ${name} list
${name} usage
EOF EOF
} }
@ -36,8 +26,8 @@ error_usage() {
public_start() { public_start() {
if [ -n "$1" ]; then if [ -n "$1" ]; then
screen -d -m -S "$1" \ mcscreen -d -m -S "$1" \
"./${1}" "/srv/minecraft/bin/${1}"
else else
error_usage error_usage
fi fi
@ -46,7 +36,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 screen -ls "$1" > /dev/null 2>&1; then if mcscreen -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"
@ -58,34 +48,26 @@ public_status() {
public_stop() { public_stop() {
if [ -n "$1" ]; then if [ -n "$1" ]; then
screen -S "$1" -X stuff '^E^Ustop^M' mcscreen -S "$1" -X stuff '^E^Ustop^M'
else else
error_usage error_usage
fi fi
} }
public_watch() { public_watch() {
screen -dr "$1" mcscreen -dr "$1"
}
public_active() {
screen -ls
} }
public_list() { public_list() {
echo "Serveurs disponibles :" mcscreen -ls
ls --color=auto
} }
verb="$1" verb="$1"
shift shift
case "$verb" in case "$verb" in
start|status|stop|watch|active|list|usage) start|status|stop|watch|list|usage)
"public_${verb}" "$@" "public_${verb}" "$@"
;; ;;
"")
public_active
;;
*) *)
error_usage error_usage
;; ;;