The inst module uses functions from the log module without including
the module.
This commit changes the constructor of the inst module so that the
log module is included directly.
#!/bin/bash
# inst.sh - Toolbox module for daemonized scripts
-# Copyright (C) 2021-2022 Matthias Kruk
+# Copyright (C) 2021-2023 Matthias Kruk
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
return 1
fi
- if ! include "opt" "sem"; then
+ if ! include "log" "opt" "sem"; then
return 1
fi