FS#67526 - [ipp-usb] Faulty systemd unit file

Attached to Project: Arch Linux
Opened by brent saner (sanerb) - Saturday, 08 August 2020, 06:59 GMT
Last edited by Andreas Radke (AndyRTR) - Saturday, 22 August 2020, 20:07 GMT
Task Type Bug Report
Category Packages: Extra
Status Closed
Assigned To Andreas Radke (AndyRTR)
Architecture All
Severity Low
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details

Description:
The unit file for ipp-usb, as presented below:

##### /usr/lib/systemd/system/ipp-usb.service #####
[Unit]
Description=Daemon for IPP over USB printer support
Documentation=man:ipp-usb(8)
After=cups.service avahi-daemon.service
Wants=avahi-daemon.service

[Service]
Type=oneshot
ExecStart=/sbin/ipp-usb udev
###################################################

is faulty.
On attempting to enable the service (as recommended per https://wiki.archlinux.org/index.php/SANE#Installation ):

###
[root@dustmite ~]# systemctl enable ipp-usb.service
The unit files have no installation config (WantedBy=, RequiredBy=, Also=,
Alias= settings in the [Install] section, and DefaultInstance= for template
units). This means they are not meant to be enabled using systemctl.

Possible reasons for having this kind of units are:
• A unit may be statically enabled by being symlinked from another unit's
.wants/ or .requires/ directory.
• A unit's purpose may be to act as a helper for some other unit which has
a requirement dependency on it.
• A unit may be started when needed via activation (socket, path, timer,
D-Bus, udev, scripted systemctl call, ...).
• In case of template units, the unit is meant to be enabled with some
instance name specified.
###

Additionally, it lists "cups.service" as an "After" requisite, yet there is no cups.service unit (perhaps this should use "org.cups.cupsd.service" in its place).

Additional info:
* package version(s): 0.9.10-1

Steps to reproduce:
See above.
This task depends upon

Closed by  Andreas Radke (AndyRTR)
Saturday, 22 August 2020, 20:07 GMT
Reason for closing:  Fixed
Additional comments about closing:  0.9.11-2
Comment by brent saner (sanerb) - Saturday, 08 August 2020, 07:01 GMT
Fixed service unit file:

[Unit]
Description=Daemon for IPP over USB printer support
Documentation=man:ipp-usb(8)
After=org.cups.cupsd.service avahi-daemon.service
Wants=avahi-daemon.service

[Service]
Type=oneshot
ExecStart=/usr/bin/ipp-usb udev

[Install]
WantedBy=multi-user.target

Loading...