17 lines
314 B
Bash
17 lines
314 B
Bash
#! /bin/sh
|
|
#
|
|
# autofs dispatcher script for NetworkManager
|
|
#
|
|
# Matthias Koenig <mkoenig@suse.de>
|
|
#
|
|
case "$2" in
|
|
up)
|
|
if test -x /usr/bin/systemctl && systemctl -q is-enabled autofs.service; then
|
|
systemctl reload autofs.service
|
|
fi
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|