diff options
author | Linus Wallgren <linus.wallgren@scypho.com> | 2016-10-28 16:36:27 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-23 11:02:26 +0000 |
commit | 94efe6d1d7893e241bcf98eff80ac8d8fbf2e885 (patch) | |
tree | aa35f2e037ab36d97c1f08372bab6129b043bc94 /meta/classes/systemd.bbclass | |
parent | 364565f3f3baccc9757ce0dcb393464b38055b4f (diff) | |
download | openembedded-core-94efe6d1d7893e241bcf98eff80ac8d8fbf2e885.tar.gz openembedded-core-94efe6d1d7893e241bcf98eff80ac8d8fbf2e885.tar.bz2 openembedded-core-94efe6d1d7893e241bcf98eff80ac8d8fbf2e885.zip |
systemd: Reload configuration on package install
When a systemd service file has changed it is required to reload
systemd's configuration. Otherwise changes to a service file will not be
picked up during package upgrade.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes/systemd.bbclass')
-rw-r--r-- | meta/classes/systemd.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/systemd.bbclass b/meta/classes/systemd.bbclass index d56c760a17..7e51ed6718 100644 --- a/meta/classes/systemd.bbclass +++ b/meta/classes/systemd.bbclass @@ -29,6 +29,10 @@ if [ -n "$D" ]; then fi if type systemctl >/dev/null 2>/dev/null; then + if [ -z "$D" ]; then + systemctl daemon-reload + fi + systemctl $OPTS ${SYSTEMD_AUTO_ENABLE} ${SYSTEMD_SERVICE} if [ -z "$D" -a "${SYSTEMD_AUTO_ENABLE}" = "enable" ]; then |