Hacker News new | ask | show | jobs
by tb_technical 1285 days ago
Why? Crob is simple, well understood, and works well. Why in god's name do you want to reinvent the wheel?
2 comments

How does it work if I want to ensure that a certain volume must be mounted before a job runs?
Add the check at the start of the script?
What check exactly? What's the command?
Try this, replace "/foo/bar" with the path to your mount point, and the echos with additional desired behaviour.

(I'm assuming you're writing a bash script on a Linux system)

if grep -qs '/foo/bar' /proc/mounts; then

    echo "/foo/bar mounted"
else

    echo "/foo/bar not mounted"

    return 1 || exit 1
fi

Put these commands below the shebang but before the start of the script. I hope this helps you!

Edit: I added a crapload of newlines to better show the indentation and newlines required for the script to work. Sorry it's ugly

Because is not round enough.

This is a trend in SW: facelift every couple of years.