mirror of
https://github.com/wanderleihuttel/vchanger.git
synced 2025-04-19 08:55:14 +00:00
13 lines
347 B
Bash
13 lines
347 B
Bash
#!/bin/sh
|
|
#
|
|
# vchanger-launch-mount.sh ( vchanger v.1.0.1 ) 2015-06-03
|
|
#
|
|
# This script is used to run the vchanger-mount-uuid.sh script in
|
|
# another [background] process launched by the at command in order
|
|
# to prevent delays when invoked by a udev rule.
|
|
#
|
|
VCHANGER_MOUNT=/usr/libexec/vchanger/vchanger-mount-uuid.sh
|
|
{
|
|
$VCHANGER_MOUNT $1
|
|
} &
|