From 4af23ad5de0896247f35de936fcfd71fbcaecdd2 Mon Sep 17 00:00:00 2001 From: Luc Bijl Date: Sun, 17 Aug 2025 13:38:03 +0200 Subject: [PATCH] bin: add --- bin/mount-nas | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 bin/mount-nas diff --git a/bin/mount-nas b/bin/mount-nas new file mode 100755 index 0000000..863a27d --- /dev/null +++ b/bin/mount-nas @@ -0,0 +1,8 @@ +#!/bin/sh + +host="" +mountpoint="" +username="" +uid= + +exec mount -t cifs -o username=$username -o uid=$uid -o vers=2.0 $host $mountpoint