init adding rclone

This commit is contained in:
Mukhtar Akere
2025-02-12 22:11:58 +01:00
parent c386495d3d
commit 878f78468f
41 changed files with 6741 additions and 0 deletions

15
scripts/setup.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
set -e
# Install FUSE and required dependencies
apt-get update
apt-get install -y --no-install-recommends fuse3
rm -rf /var/lib/apt/lists/*
# Create nonroot user and group
groupadd -r nonroot
useradd -r -g nonroot nonroot
# Create mount directory
mkdir -p /mnt/rclone
chown nonroot:nonroot /mnt/rclone