/usr/lib/udisks2/udisks2-inhibit is in udisks2 2.1.7-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #!/bin/sh
# Avoid udisks mounting while a program is running. This is mostly useful
# for installers.
# This is similar to udisks 1.x's "udisks --inhibit .." command.
# Author: Martin Pitt <martin.pitt@ubuntu.com>
set -e
[ -n "$1" ] || {
echo "Usage: $0 <command> [<arguments> ...]" >&2
exit 1
}
[ "`id -u`" = 0 ] || {
echo "You need to run this script as root" >&2
exit 1
}
mkdir -p /run/udev/rules.d
echo 'SUBSYSTEM=="block", ENV{UDISKS_IGNORE}="1"' > /run/udev/rules.d/90-udisks-inhibit.rules
trap "rm -f /run/udev/rules.d/90-udisks-inhibit.rules; udevadm control --reload; udevadm trigger --subsystem-match=block" EXIT HUP INT QUIT ILL ABRT FPE KILL SEGV PIPE ALRM TERM BUS
udevadm control --reload
udevadm trigger --subsystem-match=block
# run wrapped command
"$@"
|