diff options
author | davidovski <david@davidovski.xyz> | 2022-05-27 18:34:26 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-27 18:34:26 +0100 |
commit | 4615385d6c8203001962a7a31dd02cdb1a73544b (patch) | |
tree | 0ff0ea93838f9c39ee5a09066ad05d9567e31437 /repo/util/lvm2/lvm.initd | |
parent | 7b0628f037dcbf85cfb381d5e05dea39a2059d33 (diff) |
added tor
Diffstat (limited to 'repo/util/lvm2/lvm.initd')
-rw-r--r-- | repo/util/lvm2/lvm.initd | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/repo/util/lvm2/lvm.initd b/repo/util/lvm2/lvm.initd deleted file mode 100644 index db6adbe..0000000 --- a/repo/util/lvm2/lvm.initd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/openrc-run - -depend() { - before checkfs fsck swap - after hwdrivers modules device-mapper -} - -dm_in_proc() { - local rc=0 i= - for i in devices misc; do - grep -qs 'device-mapper' /proc/$i - rc=$(($rc + $?)) - done - return $rc -} - -start() { - local rc=0 msg= - ebegin "Setting up the Logical Volume Manager" - if [ -e /proc/modules ] && ! dm_in_proc; then - modprobe dm-mod 2>/dev/null - fi - if [ -d /proc/lvm ] || dm_in_proc; then - vgscan --mknodes --ignorelockingfailure >/dev/null 2>&1 - vgchange --sysinit --activate y >/dev/null 2>&1 - rc=$? - else - rc=1 - fi - eend $rc -} - -stop() { - ebegin "Shutting down the Logical Volume Manager" - vgchange --ignorelockingfailure -a n >/dev/null 2>&1 - eend $? -} - |