mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
513 B

  1. #!/bin/bash
  2. #
  3. # ROCK Linux /etc/rc.d/init.d/webmin
  4. #
  5. # Desc: Webmin - System Administration daemon
  6. # Runlevel: 80 rcX
  7. #
  8. main_begin
  9. block_begin(start, `Starting webmin system administration deamon.')
  10. check(`D_sysconfdir/start')
  11. block_end
  12. block_begin(stop, `Stopping webmin system administration deamon.')
  13. check(`D_sysconfdir/stop')
  14. block_end
  15. block_begin(status, `Status of webmin system administration deamon.')
  16. check(`D_sysconfdir/status')
  17. block_end
  18. main_end