Description of problem: According to https://fedoraproject.org/wiki/Packaging/SysVInitScript quagga component init scripts have two small lsb compliance issues: $SERVICE in (bgpd ospf6d ospfd ripd ripngd zebra) 1. Init script should return code "4" if restarting service under nonprivileged user: # su testuserqa -c "service $SERVICE restart"; echo $? restart: unrecognized service 1 now: 1 expected: 4 2. force-reload action should be supported
Sorry, copy/paste issue. Behaviour for 1 is: 1. Init script should return code "4" if restarting service under nonprivileged user: # su testuserqa -c "service $SERVICE restart"; echo $? Shutting down $SERVICE: [FAILED] Starting $SERVICE: [FAILED] 1 now: 1 expected: 4