Files
download/rsync/install.sh
耗子 758e1c8799
All checks were successful
Generate Checksums / checksums (push) Successful in 46s
feat: 清理提交
2026-01-31 07:03:45 +08:00

75 lines
1.8 KiB
Bash

#!/bin/bash
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:$PATH
source <(curl -f -s --connect-timeout 10 --retry 3 https://dl.acepanel.net/public.sh)
if [ $? -ne 0 ]; then
echo "Download public.sh failed, please check the network or try again later."
exit 1
fi
channel=${1}
version=${2}
if [ ${OS} == "rhel" ]; then
dnf install -y rsync
elif [ ${OS} == "debian" ] || [ ${OS} == "ubuntu" ]; then
apt-get install -y rsync
else
error "Unsupported operating system"
fi
if [ "$?" != "0" ]; then
error "Installation failed"
fi
# 写入配置
cat >/etc/rsyncd.conf <<EOF
uid = root
gid = root
port = 873
use chroot = no
read only = no
dont compress = *.jpg *.jpeg *.png *.gif *.webp *.avif *.mp4 *.avi *.mov *.mkv *.mp3 *.wav *.aac *.flac *.zip *.rar *.7z *.gz *.tgz *.tar *.pdf *.epub *.iso *.exe *.apk *.dmg *.rpm *.deb *.msi
hosts allow = 127.0.0.1/32 ::1/128
# hosts deny =
max connections = 100
timeout = 1800
lock file = /var/run/rsync.lock
pid file = /var/run/rsyncd.pid
log file = /var/log/rsyncd.log
EOF
touch /etc/rsyncd.secrets
chmod 644 /etc/rsyncd.conf
chmod 600 /etc/rsyncd.secrets
# 防火墙
firewall-cmd --zone=public --add-port=873/tcp --permanent
firewall-cmd --reload
# 写入服务文件
cat >/etc/systemd/system/rsyncd.service <<EOF
[Unit]
Description=fast remote file copy program daemon
After=network-online.target remote-fs.target nss-lookup.target
Wants=network-online.target
ConditionPathExists=/etc/rsyncd.conf
[Service]
ExecStart=/usr/bin/rsync --daemon --no-detach "\$OPTIONS"
ExecReload=/bin/kill -HUP \$MAINPID
KillMode=process
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=multi-user.target
EOF
chmod 644 /etc/systemd/system/rsyncd.service
systemctl daemon-reload
systemctl enable --now rsyncd
acepanel app write rsync ${channel} ${version}