diff options
Diffstat (limited to 'mount-data/files')
-rwxr-xr-x | mount-data/files/init | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mount-data/files/init b/mount-data/files/init new file mode 100755 index 0000000..d1362e2 --- /dev/null +++ b/mount-data/files/init @@ -0,0 +1,24 @@ +#!/bin/sh /etc/rc.common + +START=36 +STOP=90 + +status() { + findmnt >/dev/null /data +} + +start() { + status || mount -o subvol=@data UUID=7dc606e7-39e0-4320-9ff6-83a10f163e54 /data +} + +stop() { + umount -fl /data +} + +restart() { + : +} + +reload() { + : +} |