aboutsummaryrefslogtreecommitdiffstats
path: root/initscripts.spec
diff options
context:
space:
mode:
authorDavid Kaspar [Dee'Kej] <dkaspar@redhat.com>2018-05-31 12:18:04 +0200
committerDee'Kej <deekej@linuxmail.org>2018-06-01 14:51:29 +0200
commit1ea9057be049bebf01e24c48ff14e1121e9b4645 (patch)
tree98e1f12155995817f5602827fd64dae5b97f023f /initscripts.spec
parent81a51973b59634b2391b16e278d3f24f97ffae58 (diff)
downloadinitscripts-1ea9057be049bebf01e24c48ff14e1121e9b4645.tar
initscripts-1ea9057be049bebf01e24c48ff14e1121e9b4645.tar.gz
initscripts-1ea9057be049bebf01e24c48ff14e1121e9b4645.tar.bz2
initscripts-1ea9057be049bebf01e24c48ff14e1121e9b4645.tar.xz
initscripts-1ea9057be049bebf01e24c48ff14e1121e9b4645.zip
specfile: missing fedora-domainname.service returned in systemd macros
During previous cleanup, where we removed the symlinks to fedora-* services, we forgot to add the fedora-domainname.service into the systemd macros.
Diffstat (limited to 'initscripts.spec')
-rw-r--r--initscripts.spec6
1 files changed, 3 insertions, 3 deletions
diff --git a/initscripts.spec b/initscripts.spec
index 0a0acb51..ae9a65c8 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -131,7 +131,7 @@ touch %{buildroot}%{_sbindir}/ifdown
# ---------------
%post
-%systemd_post fedora-import-state.service fedora-loadmodules.service fedora-readonly.service
+%systemd_post fedora-domainname.service fedora-import-state.service fedora-loadmodules.service fedora-readonly.service
chkconfig --add network > /dev/null 2>&1 || :
chkconfig --add netconsole > /dev/null 2>&1 || :
@@ -146,7 +146,7 @@ chkconfig --add netconsole > /dev/null 2>&1 || :
# ---------------
%preun
-%systemd_preun fedora-import-state.service fedora-loadmodules.service fedora-readonly.service
+%systemd_preun fedora-domainname.service fedora-import-state.service fedora-loadmodules.service fedora-readonly.service
if [ $1 -eq 0 ]; then
chkconfig --del network > /dev/null 2>&1 || :
@@ -157,7 +157,7 @@ fi
# ---------------
%postun
-%systemd_postun fedora-import-state.service fedora-loadmodules.service fedora-readonly.service
+%systemd_postun fedora-domainname.service fedora-import-state.service fedora-loadmodules.service fedora-readonly.service
# === PACKAGING INSTRUCTIONS ==================================================