1 Star 0 Fork 0

KKDP/AberMUSH

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
installer.sh 783 Bytes
一键复制 编辑 原始数据 按行查看 历史
Bob Mottram 提交于 2020-11-18 10:39 . Extra font for web interface
#!/bin/bash
INSTALL_PACKAGE="sudo apt-get -y install"
PYTHON_PACKAGE="python3"
if [ -f /usr/bin/pacman ]; then
INSTALL_PACKAGE="sudo pacman -S --noconfirm"
PYTHON_PACKAGE="python"
fi
$INSTALL_PACKAGE telnet
$INSTALL_PACKAGE $PYTHON_PACKAGE
$INSTALL_PACKAGE $PYTHON_PACKAGE-pip
$INSTALL_PACKAGE $PYTHON_PACKAGE-dateutil
$INSTALL_PACKAGE $PYTHON_PACKAGE-websocket
$INSTALL_PACKAGE git-core
if [ ! -d /opt/abermush ]; then
sudo useradd -d /opt/abermush/ abermush
sudo git clone https://code.freedombone.net/bashrc/AberMUSH /opt/abermush
chown -R abermush:abermush abermush
fi
if [ -d /etc/systemd/system ]; then
sudo cp /opt/abermush/abermush.service /etc/systemd/system/abermush.service
sudo systemctl enable abermush
sudo systemctl restart abermush
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jjhoc/AberMUSH.git
git@gitee.com:jjhoc/AberMUSH.git
jjhoc
AberMUSH
AberMUSH
main

搜索帮助