first commit

This commit is contained in:
julien
2024-12-03 00:49:51 +01:00
commit ba023e9f59
11 changed files with 244 additions and 0 deletions

28
modules/volumes.sh Executable file
View File

@@ -0,0 +1,28 @@
#!/bin/bash
##########################
### Volumes mountpoints
echo
echo " => Volumes mountpoints"
echo
if [ -d /var/netig/srv ]
then
echo " -> Already done !"
else
mkdir -p /var/netig/srv
echo
echo " => Adjust /etc/fstab accordingly !"
echo
fi
if [ -d /var/netig/bak ]
then
echo " -> Already done !"
else
mkdir -p /var/netig/bak
echo
echo " => Adjust /etc/fstab accordingly !"
echo
fi