dev-build/steve: tweak pkg_postinst instructions

* Use `systemd enable --now` instead of 2 commands
* Grammar tweaks

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James 2025-11-28 02:13:29 +00:00
parent a0b8ff5532
commit eaa08124c4
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 6 additions and 8 deletions

View File

@ -43,10 +43,9 @@ pkg_postinst() {
if ! grep -q -s -R -- '--jobserver-auth=fifo:/dev/steve' "${EROOT}"/etc/portage/make.conf
then
elog "In order to use system-wide steve instance, enable the service:"
elog "In order to use the system-wide steve instance, enable the service:"
elog
elog " systemctl enable steve"
elog " systemctl start steve"
elog " systemctl enable --now steve"
elog
elog "Then add to your make.conf:"
elog
@ -54,7 +53,7 @@ pkg_postinst() {
elog ' NINJAOPTS=""'
elog
elog "You can use -l in NINJAOPTS but *do not* use -j, as it disables"
elog "job server support."
elog "jobserver support."
fi
}

View File

@ -40,10 +40,9 @@ pkg_postinst() {
if ! grep -q -s -R -- '--jobserver-auth=fifo:/dev/steve' "${EROOT}"/etc/portage/make.conf
then
elog "In order to use system-wide steve instance, enable the service:"
elog "In order to use the system-wide steve instance, enable the service:"
elog
elog " systemctl enable steve"
elog " systemctl start steve"
elog " systemctl enable --now steve"
elog
elog "Then add to your make.conf:"
elog
@ -51,7 +50,7 @@ pkg_postinst() {
elog ' NINJAOPTS=""'
elog
elog "You can use -l in NINJAOPTS but *do not* use -j, as it disables"
elog "job server support."
elog "jobserver support."
fi
}