Hi,
I’ve managed to set up a volume and attached it to my droplet in the storage folder of my project. On boot this is done by fstab by the following line.
/dev/disk/by-id/scsi-0DO_Volume_volume-ams3-01 /path/to/mount-point ext4 defaults,nofail,discard 0 0
However after every reboot I need to set the permissions by performing:
sudo chown -R forge:forge /path/to/mount-point
Otherwise the forge user has no permissions on the volume. Can this be automated and is there a best practice for this?
Thanks in advance.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey There,
What I can suggest is the following:
touch scriptfile
Source - https://raspberrypi.stackexchange.com/questions/15475/run-bash-script-on-startup
As an alternate solution, you can use crontab and set a @reboot line in there - https://www.cyberciti.biz/faq/linux-execute-cron-job-after-system-reboot/
Hope this helps and make sure to let me know if it did!
Best, Dennis