# Script voor handmatig mounten van /store drive

# bug systemd still uses old version fstab
systemctl daemon-reload;

mount UUID=138d237d-dae1-4c0f-8246-b766b1d33737 /store;

if mountpoint -q "/store"; then
   echo "de store drive is gemount";
else
   echo "de mount van de store drive is niet gelukt";
fi
