Changes between Initial Version and Version 4 of Ticket #14665
- Timestamp:
- Oct 5, 2015 1:52:24 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14665 – Description
initial v4 4 4 5 5 However, the /lib/systemd/system/vboxdrv.service file that is generated by the postinst-common.sh script based on LSB info in /usr/lib/virtualbox/vboxdrv.sh contains an extra '$' character in the "After=" line. After installing the Debian package of VBox 5.0.6, this line in the vboxdrv.service reads: 6 6 {{{ 7 7 After=$syslog.service 8 8 }}} 9 9 As systemd does not recognize such service, it complains during system boot: 10 10 {{{ 11 11 Oct 04 10:23:32 rameau systemd[1]: [/lib/systemd/system/vboxdrv.service:5] Failed to add dependency on $syslog.service, ignoring: Invalid argument 12 12 }}} 13 13 This error is caused by the /usr/lib/virtualbox/routines.sh that does not remove the '$' character from system facility names as parsed from the vboxdrv.sh file when these facilities are translated into systemd unit files. 14 14