You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our __start_stop function, which is used as helper function within our Start, Stop, Restart,... functions doesn't provide native support for systemd. While usage of service still works, it would be nice if we could support systemctl usage.
Also our _grmlinitd function doesn't complete systemd unit files, but only init scripts. This means that e.g. Start N<tab> doesn't detect/complete NetworkManager.service, as the network-manager Debian package ships a systemd unit file but not an init script.
The text was updated successfully, but these errors were encountered:
Actually, it makes things even more complicated. If you have systemd with sysv-generator enabled, you get a unit file per sysv init script, and your completion would show both, unless you deduplicate somehow. And if you have sysv-generator disabled, you get completion for scripts that can't be run.
Our
__start_stop
function, which is used as helper function within ourStart
,Stop
,Restart
,... functions doesn't provide native support for systemd. While usage ofservice
still works, it would be nice if we could support systemctl usage.Also our
_grmlinitd
function doesn't complete systemd unit files, but only init scripts. This means that e.g.Start N<tab>
doesn't detect/completeNetworkManager.service
, as the network-manager Debian package ships a systemd unit file but not an init script.The text was updated successfully, but these errors were encountered: