6 lines
296 B
Text
6 lines
296 B
Text
|
#!/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
|