Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arch Linux
netctl
Commits
ae4adf79
Commit
ae4adf79
authored
Sep 13, 2009
by
Jim Pryor
Committed by
James Rayner
Sep 14, 2009
Browse files
load hooks only from /usr/lib/network/hooks
Signed-off-by:
Jim Pryor
<
profjim@jimpryor.net
>
parent
06f6fab0
Changes
2
Hide whitespace changes
Inline
Side-by-side
contrib/logging.hook
View file @
ae4adf79
### Sample netcfg hook script for logging/debugging connections
### To install, make this executable and put it in /
etc
/network
.d
/hooks
### To install, make this executable and put it in /
usr/lib
/network/hooks
. /etc/rc.conf
...
...
src/globals
View file @
ae4adf79
# /usr/lib/networks/globals
#
# any +x files in /usr/lib/network/hooks
and /etc/network.d/hooks
# any +x files in /usr/lib/network/hooks
# will be sourced when this file is.
# hook files can override any of the utility functions defined here for custom behavior
# (such as logging error messages to syslog)
...
...
@@ -10,10 +10,9 @@
### Globals
PROFILE_DIR
=
"/etc/network.d/"
HOOKS_DIR
=
"/usr/lib/network/hooks/"
USERHOOKS_DIR
=
"
$PROFILE_DIR
/hooks/"
IFACE_DIR
=
"
$PROFILE_DIR
/interfaces/"
SUBR_DIR
=
"/usr/lib/network/"
HOOKS_DIR
=
"
${
SUBR_DIR
}
/hooks/"
CONN_DIR
=
"
${
SUBR_DIR
}
/connections/"
STATE_DIR
=
"/var/run/network/"
...
...
@@ -109,13 +108,8 @@ checkyesno()
function
load_hooks
()
{
### Load any +x files in $HOOKS_DIR and $USERHOOKS_DIR
local
hook
for
hook
in
$(
find
-L
"
$HOOKS_DIR
/"
"
$USERHOOKS_DIR
/
$hook
"
-maxdepth
1
-type
f
-executable
-printf
'%P\n'
|
sort
-u
)
;
do
# if there's an executable hook of this name in USERHOOKS_DIR, we only load it
if
[
-x
"
$USERHOOKS_DIR
/
$hook
"
]
;
then
source
"
$USERHOOKS_DIR
/
$hook
"
else
source
"
$HOOKS_DIR
/
$hook
"
fi
for
hook
in
$(
find
-L
"
$HOOKS_DIR
/"
-maxdepth
1
-type
f
-executable
|
sort
-u
)
;
do
source
"
$hook
"
done
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment