Disable media archive mount

This commit is contained in:
Ciapa 2023-04-16 21:21:04 +00:00
parent 97203c3580
commit 08449b5de4
1 changed files with 1 additions and 5 deletions

View File

@ -19,7 +19,7 @@
fileSystems."/mnt/archive" = {
device = "//u203375.your-storagebox.de/backup/media_archive";
fsType = "cifs";
options = [ "x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s,seal,iocharset=utf8,credentials=/root/.smbcredentials,uid=0,gid=993,file_mode=0775,dir_mode=0775,cache=loose" ];
options = [ "seal,iocharset=utf8,credentials=/root/.smbcredentials,uid=0,gid=993,file_mode=0775,dir_mode=0775,cache=loose" ];
};
# Common mounts
@ -28,8 +28,4 @@
device = "/mnt/data/media";
options = [ "bind,ro" ];
};
fileSystems."/sftp_jail/common/archive" = {
device = "/mnt/archive";
options = [ "bind,ro" ];
};
}