mirror of
https://github.com/byReqz/gotty-docker.git
synced 2024-10-31 23:43:13 +00:00
30 lines
693 B
Bash
30 lines
693 B
Bash
#!/bin/bash
|
|
|
|
if [ -z "$port" ];then
|
|
port=8080
|
|
fi
|
|
if [ -n "$userpass" ];then
|
|
creds="-c "$userpass""
|
|
fi
|
|
if [ "$allow_write" == "true" ];then
|
|
allow_write="-w"
|
|
fi
|
|
if [ -z "$title" ];then
|
|
title=gotty
|
|
fi
|
|
if [ -n "$pkgs" ];then
|
|
apt-get update
|
|
apt-get install -y $pkgs
|
|
fi
|
|
if [ -z "$command" ];then
|
|
apt-get update
|
|
apt-get install figlet
|
|
command="curl -s https://raw.githubusercontent.com/dylanaraps/pfetch/master/pfetch | bash && figlet no command set && read swag"
|
|
fi
|
|
|
|
if [ "$use_tmux" == "false" ];then
|
|
/gotty -p "$port" $allow_write $creds --title-format "$title" "$command"
|
|
else
|
|
/gotty -p "$port" $allow_write $creds --title-format "$title" tmux new-session -A -s "$title" "$command"
|
|
fi
|