feat: cifs and stuff
This commit is contained in:
parent
07994c11c5
commit
4d0dcde470
1 changed files with 19 additions and 1 deletions
20
setup.sh
20
setup.sh
|
@ -19,6 +19,8 @@ fi
|
|||
|
||||
## MAIN
|
||||
|
||||
set -e
|
||||
|
||||
if ! [ -f "/etc/ixvd/version" ]; then
|
||||
echo "applying overlay..."
|
||||
cp -r skel /
|
||||
|
@ -26,7 +28,7 @@ fi
|
|||
|
||||
if ! [ -d "/etc/ixvd/secrets" ]; then
|
||||
echo "setting up ixvd/secrets"
|
||||
git clone git@git.ixvd.net/ixvd/secrets /etc/ixvd/secrets
|
||||
git clone git@git.ixvd.net:ixvd/secrets /etc/ixvd/secrets
|
||||
fi
|
||||
|
||||
if ! [ -f "/root/.ssh/authorized_keys" ]; then
|
||||
|
@ -38,4 +40,20 @@ else
|
|||
echo "importing authorized_keys..."
|
||||
cat /etc/ixvd/secrets/ssh/authorized_keys >> /root/.ssh/authorized_keys
|
||||
fi
|
||||
fi
|
||||
|
||||
if ! grep -q "# cifs mount backups" /etc/fstab; then
|
||||
echo "modifying fstab..."
|
||||
cp /etc/fstab /etc/fstab.$(date +"%H-%M-%S_%d-%m-%y").bak
|
||||
. /etc/ixvd/secrets/backups.cifs
|
||||
cat<<EOF>>/etc/fstab
|
||||
# cifs mount backups
|
||||
//$domain/backups /mnt/backups cifs credentials=/etc/ixvd/secrets/backups.cifs,file_mode=0777,dir_mode=0777,noperm 0 0
|
||||
EOF
|
||||
fi
|
||||
|
||||
if ! [ -d "/mnt/backups" ]; then
|
||||
echo "mounting share..."
|
||||
mkdir /mnt/backups
|
||||
mount /mnt/backups
|
||||
fi
|
Loading…
Reference in a new issue