diff options
author | Christian Hesse <mail@eworm.de> | 2019-09-04 13:26:42 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2019-09-04 13:26:42 +0200 |
commit | c9a398fc591475dea67cc2a868d2c5d749cd06ef (patch) | |
tree | b40f46ae942b4f5651cfb30a6bb289947adb79b1 | |
parent | Fixed invalid UTF-8 codes in ChangeLog (diff) | |
download | haveged-c9a398fc591475dea67cc2a868d2c5d749cd06ef.tar.xz haveged-c9a398fc591475dea67cc2a868d2c5d749cd06ef.zip |
do not use carriage return in line break
-rw-r--r-- | init.d/service.fedora | 26 | ||||
-rw-r--r-- | init.d/service.suse | 38 |
2 files changed, 32 insertions, 32 deletions
diff --git a/init.d/service.fedora b/init.d/service.fedora index 2c581bf..306d78b 100644 --- a/init.d/service.fedora +++ b/init.d/service.fedora @@ -1,13 +1,13 @@ -[Unit]
-Description=Entropy Daemon based on the HAVEGE algorithm
-Documentation=man:haveged(8) http://www.issihosts.com/haveged/
-DefaultDependencies=no
-Before=sysinit.target shutdown.target systemd-journald.service
-
-[Service]
-ExecStart=/usr/sbin/haveged -w 1024 -v 1 --Foreground
-Restart=always
-SuccessExitStatus=137 143
-
-[Install]
-WantedBy=sysinit.target
+[Unit] +Description=Entropy Daemon based on the HAVEGE algorithm +Documentation=man:haveged(8) http://www.issihosts.com/haveged/ +DefaultDependencies=no +Before=sysinit.target shutdown.target systemd-journald.service + +[Service] +ExecStart=/usr/sbin/haveged -w 1024 -v 1 --Foreground +Restart=always +SuccessExitStatus=137 143 + +[Install] +WantedBy=sysinit.target diff --git a/init.d/service.suse b/init.d/service.suse index 26bbd59..34d387c 100644 --- a/init.d/service.suse +++ b/init.d/service.suse @@ -1,19 +1,19 @@ -[Unit]
-Description=Entropy Daemon based on the HAVEGE algorithm
-Documentation=man:haveged(8) http://www.issihosts.com/haveged/
-DefaultDependencies=no
-ConditionVirtualization=!container
-#Conflicts=shutdown.target
-# Don't wait for systemd-random-seed.service, leads to deadlock with fips=1
-#After=systemd-random-seed.service
-Before=sysinit.target shutdown.target systemd-journald.service
-
-[Service]
-ExecStart=/usr/sbin/haveged -w 1024 -v 0 -F
-CapabilityBoundingSet=CAP_SYS_ADMIN CAP_SYS_CHROOT
-PrivateNetwork=yes
-Restart=always
-SuccessExitStatus=137 143
-
-[Install]
-WantedBy=sysinit.target
+[Unit] +Description=Entropy Daemon based on the HAVEGE algorithm +Documentation=man:haveged(8) http://www.issihosts.com/haveged/ +DefaultDependencies=no +ConditionVirtualization=!container +#Conflicts=shutdown.target +# Don't wait for systemd-random-seed.service, leads to deadlock with fips=1 +#After=systemd-random-seed.service +Before=sysinit.target shutdown.target systemd-journald.service + +[Service] +ExecStart=/usr/sbin/haveged -w 1024 -v 0 -F +CapabilityBoundingSet=CAP_SYS_ADMIN CAP_SYS_CHROOT +PrivateNetwork=yes +Restart=always +SuccessExitStatus=137 143 + +[Install] +WantedBy=sysinit.target |