Hi,
What's the best way to get a list of the start order of services from systemd?
Yes, I've tried
This looks like the output I would expect, except that if that list is the system service start order, then my system is hosed. I certainly hope that my system is not starting nfs service before all the /usr/export filesystems are mounted.
I tried
Code:
systemd --test --system
but that generates over 22 thousand lines of gibberish! I filtered that with
Code:
systemd --test --system | grep -- -\> | grep Unit | grep -i service
And it's less gibberish, but it's ALMOST the reverse order of the first command, and still pretty crazy.
Ultimately, I need to discover, and fix the order of the services started by systemd, because they were mangled during the upgrade from Fedora 14
I hope that "systemctl --order" is either not the real deal, or I'm reading it wrong. Because if it is, I'm afraid I have a huge problem to fix.