/etc/NetworkManager/dispatcher.d/99controlaula is in controlaula 1.8.0-3.1.
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 | #!/bin/sh
if [ -z "$1" ]; then
echo "$0: called with no interface" 1>&2
exit 1;
fi
# Run the right scripts
case "$2" in
up)
su root -c "invoke-rc.d controlaula restart &"
exit 0
;;
*)
echo "$0: called with unknown action \`$2'" 1>&2
exit 0
;;
esac
|