5 lines
296 B
Bash
Executable file
5 lines
296 B
Bash
Executable file
#!/usr/bin/env bash
|
|
if ! mountpoint -q /mnt/shared; then mount /mnt/shared; fi
|
|
if ! mountpoint -q /mnt/elfstone; then mount /mnt/elfstone; fi
|
|
if ! mountpoint -q /mnt/elessar-music; then mount /mnt/elessar-music; fi
|
|
if ! mountpoint -q /mnt/elessar-syncthing; then mount /mnt/elessar-syncthing; fi
|