diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2012-04-11 02:07:20 +0200 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2012-04-11 11:40:18 +0200 |
commit | 7fab9eaf848004fd742e0513d620ced9ee7667a2 (patch) | |
tree | 2470a3a6643e5ae2cf3d89c50998b92cfffc86db /src/globals | |
parent | fda34d4a6c03e919786b26876d6a9c051119db1d (diff) | |
download | netctl-7fab9eaf848004fd742e0513d620ced9ee7667a2.tar.gz netctl-7fab9eaf848004fd742e0513d620ced9ee7667a2.tar.xz |
Rewrite output hook to not depend on initscripts
/etc/rc.d/functions is owned by initscripts on which netcfg does not explicitly depend.
The revised layout is inspired by systemd.
Diffstat (limited to 'src/globals')
-rw-r--r-- | src/globals | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/globals b/src/globals index eb9f934..f8d30ef 100644 --- a/src/globals +++ b/src/globals @@ -23,14 +23,10 @@ function report_err { echo "$*" } -function report_warn { +function report_notice { echo "$*" } -function report_notify { - true -} - function report_debug { checkyesno "$NETCFG_DEBUG" && echo "DEBUG: $*" >&2 } |