Merge pull request #183 from itcbx/dev

修复rsyncd在debian或ubuntu下安装失败的bug.
pull/185/head
Mr Chen 3 years ago committed by GitHub
commit 277b95f74b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      plugins/rsyncd/install.sh

@ -23,7 +23,7 @@ Install_rsyncd()
echo '正在安装脚本文件...' > $install_tmp
if [ "$OSNAME" == "debian'" ] || [ "$OSNAME" == "ubuntu'" ];then
if [ "$OSNAME" == "debian" ] || [ "$OSNAME" == "ubuntu" ];then
apt install -y rsync
apt install -y lsyncd
elif [[ "$OSNAME" == "arch" ]]; then

Loading…
Cancel
Save