Update statuses to needs testing

Update statuses for scripts:
Pulse
Radicale
Rclone
Recyclarr
Redis
Revealjs
Searxng
Seelf
Semaphore
Silverbullet
This commit is contained in:
Sam Heinz
2025-07-21 14:34:28 +10:00
parent 035706a995
commit 2f172665ce
7 changed files with 20 additions and 19 deletions

View File

@@ -21,7 +21,7 @@ msg_info "Installing rclone"
temp_file=$(mktemp)
mkdir -p /opt/rclone
RELEASE=$(curl -s https://api.github.com/repos/rclone/rclone/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
curl -fsSL "https://github.com/rclone/rclone/releases/download/v${RELEASE}/rclone-v${RELEASE}-linux-amd64.zip" -o "$temp_file"
curl -fsSL "https://github.com/rclone/rclone/releases/download/v${RELEASE}/rclone-v${RELEASE}-linux-arm64.zip" -o "$temp_file"
$STD unzip -j "$temp_file" '*/**' -d /opt/rclone
cd /opt/rclone
RCLONE_PASSWORD=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)

View File

@@ -26,6 +26,7 @@ msg_info "Setup Python3"
$STD apt-get install -y \
python3 \
python3-{pip,venv,yaml,dev}
rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED
$STD pip install --upgrade pip setuptools wheel
$STD pip install pyyaml
msg_ok "Setup Python3"