blob: ad880c14e8a6ad38c413acc36c85ee1967009779 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
#
# Copyright (C) 2025-2026 Maria Lisina
# SPDX-License-Identifier: Apache-2.0
#
# cifs configuration
set -e
cat << EOF >> /etc/fstab
//172.16.0.1/Users/${1} /media/cifs/Windows cifs _netdev,defaults,vers=3.1.1,credentials=/root/.cifs
EOF
cat << EOF > /root/.cifs
username=${1}
password=${2}
EOF
|