diff options
Diffstat (limited to 'mount-data/files/init')
-rwxr-xr-x | mount-data/files/init | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/mount-data/files/init b/mount-data/files/init deleted file mode 100755 index d1362e2..0000000 --- a/mount-data/files/init +++ /dev/null @@ -1,24 +0,0 @@ -#!/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() { - : -} |