#!/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() { : }