Lines Matching +full:run +full:- +full:selinux +full:- +full:test
5 # chkconfig: - 12 87
7 # listed in the /etc/selinux/restorecond.conf file, and restores the \
11 # config: /etc/selinux/restorecond.conf
12 # pidfile: /run/restorecond.pid
15 # 0 - success
16 # 1 - generic or unspecified error
17 # 2 - invalid or excess argument(s)
18 # 3 - unimplemented feature (e.g. "reload")
19 # 4 - insufficient privilege
20 # 5 - program is not installed
21 # 6 - program is not configured
22 # 7 - program is not running
29 [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled || exit 7
31 # Check that we are root ... so non-root users stop here
32 test $EUID = 0 || exit 4
34 test -x /usr/sbin/restorecond || exit 5
35 test -f /etc/selinux/restorecond.conf || exit 6
41 echo -n $"Starting restorecond: "
52 echo -n $"Shutting down restorecond: "
55 rm -f /var/lock/subsys/restorecond
78 force-reload|restart|reload)
82 [ -e /var/lock/subsys/restorecond ] && restart || :
85 echo $"Usage: $0 {start|stop|restart|force-reload|status|condrestart}"