This commit is contained in:
Minecon724 2023-11-01 15:10:46 +01:00
parent b2353b4349
commit 0315ff2871
5 changed files with 13 additions and 12 deletions

View File

@ -16,7 +16,7 @@ apt install -y python3 rclone fuse
cp -n rclone.conf /root/.config/rclone/rclone.conf
cp nman.service /etc/systemd/system/
cp nman.timer /etc/systemd/system/
cp mnt-nginx.mount /etc/systemd/system/
cp mnt-files.mount /etc/systemd/system/
cp nman /etc/default/
cp nman.py /opt/
cp nman.sh /opt/
@ -27,7 +27,7 @@ systemctl stop nginx
rm -rf /etc/nginx
mkdir /etc/nginx
systemctl enable --now mnt-nginx.mount
systemctl enable --now mnt-files.mount
/opt/nman.sh

9
mnt-files.mount Normal file
View File

@ -0,0 +1,9 @@
[Unit]
Description=mount
Before=nginx.service
[Mount]
Type=rclone
What=files:
Where=/mnt/files
Options=ro,_netdev,allow_other,args2env,config=/root/.config/rclone/rclone.conf,read-only

View File

@ -1,8 +0,0 @@
[Unit]
Description=nginx mount
[Mount]
Type=rclone
What=files:nginx
Where=/mnt/nginx
Options=ro,_netdev,allow_other,args2env,config=/root/.config/rclone/rclone.conf,read-only

View File

@ -2,7 +2,7 @@ import os
import shutil
from hashlib import sha1
REMOTE_PATH=os.getenv("REMOTE_PATH", "/mnt/nginx")
REMOTE_PATH=os.getenv("REMOTE_PATH", "/mnt/files/nginx")
LOCAL_PATH=os.getenv("LOCAL_PATH", "/etc/nginx")
ENV={}

View File

@ -1,6 +1,6 @@
[files]
type = sftp
host =
host = # fill me
user = files
key_file = /root/.ssh/id_rsa
shell_type = unix