Advertisement
Guest User

123

a guest
Apr 15th, 2015
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. Centos:
  2. # find /etc/rc{0,1,2,3,4,5,6}.d/ -regextype posix-extended -regex '.*mcoll.*'
  3. /etc/rc0.d/K74mcollective
  4. /etc/rc1.d/K74mcollective
  5. /etc/rc2.d/K74mcollective
  6. /etc/rc3.d/K74mcollective
  7. /etc/rc4.d/K74mcollective
  8. /etc/rc5.d/K74mcollective
  9. /etc/rc6.d/K74mcollective
  10.  
  11. # readlink -f /etc/rc6.d/K74mcollective
  12. /etc/rc.d/init.d/mcollective
  13.  
  14. # grep -e chkconfig -e Default /etc/rc.d/init.d/mcollective
  15. # chkconfig: - 81 76
  16.  
  17. Ubuntu:
  18. # find /etc/rc{0,1,2,3,4,5,6,S}.d/ -regextype posix-extended -regex '.*mcoll.*'
  19. /etc/rc0.d/K20mcollective
  20. /etc/rc1.d/K20mcollective
  21. /etc/rc2.d/S20mcollective
  22. /etc/rc3.d/S20mcollective
  23. /etc/rc4.d/S20mcollective
  24. /etc/rc5.d/S20mcollective
  25. /etc/rc6.d/K20mcollective
  26.  
  27. # readlink -f /etc/rc2.d/S20mcollective
  28. /etc/init.d/mcollective
  29.  
  30. # grep -e chkconfig -e Default /etc/init.d/mcollective
  31. # Default-Start: 2 3 4 5
  32. # Default-Stop: 0 1 6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement