systemd in RHEL 7
This Labor Day weekend, I thought I'd spend some time learning about Fedora's systemd. The Wikipedia article for systemd states, "Support in Red Hat Enterprise Linux 7 also planned." (And then includes the all-too-familiar "citation needed" link.)
That got me thinking about this Red Hat Enterprise Linux 7 Ideas group and something I wanted to mention about systemd.
systemctl, like the service utility that came before it, depends on the administrator knowing the name of the service. For example, if I wanted to restart the CUPS daemon, should it be service cupsd restart or service cups restart? There was no easy way to know without blindly trying both. (In RHEL5, it is "cups", by the way. But many other services did have the "d" for daemon on the end: ntpd, sshd, etc.)
That's why I often just directly ran the init.d scripts. Typing /etc/init.d/cups and then pressing TAB to tab-complete it let me quickly do whatever I needed to the service without having to guess the name. That is one benefit Debian has over RHEL: their init.d scripts all began with "rc" and were in the root user's $PATH. So, the administrator could simply type rccups and press TAB to make sure it shouldn't be rccupsd. The entire command turns out to be rccups restart, which is shorter than service cups restart. (And you know how lazy us system administrators are.)
Sadly, it appears systemctl suffers the same problem. I don't suppose there is a way to get systemctl to tab-complete service names?