<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Jun 3, 2020 at 6:21 PM Stan Grishin <<a href="mailto:stangri@melmac.net">stangri@melmac.net</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">To obtain the list of enabled (for autostart) services, you'd type<br>
service list-enabled. For disabled services service list-disabled. It<br>
is useful when you need to quickly check which services are<br>
enabled/disabled or when helping other users troubleshoot.<br>
<br>
An alternative to list-enabled/list-disabled that I have considered<br>
was to output the enabled status of available services below the usage<br>
output, ie replace:<br>
                if [ -n "$1" ]; then<br>
                        echo "service "'"'"$1"'"'" not found, the<br>
following services are available:"<br>
                    ls "/etc/init.d"<br>
                fi<br>
<br>
with<br>
<br>
                if [ -n "$1" ]; then<br>
                        echo "service "'"'"$1"'"'" not found, the<br>
following services are available:"<br>
                    for F in /etc/init.d/* ; do<br>
                        $F enabled && echo "$F (autostart enabled)" ||<br>
echo "$F (autostart **disabled**)"<br>
                    done;<br>
                fi<br>
<br>
<br>
Please elaborate on the list-start and list-stop question, I'm not<br>
sure I understand the purpose of those.<br></blockquote><div><br></div><div>Originally I asked that question because I misunderstood what the goal of this change was.</div><div><br></div><div>I thought that you were proposing to add the ability to enable / disable multiple services at the same time, so I was asking about the ability to start / stop multiple services at the same time.</div><div><br></div><div>It's clear not that's not what you were trying to propose. <br></div><div><br></div><div>So instead, what about listing the services that are running, and also listing the services that are configured, but not running?</div><div><br></div><div>I don't know that that provides a lot of value, so it may not be worth doing.<br></div></div></div>