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.

22 lines
447 B

  1. #!/bin/bash
  2. #
  3. # ROCK Linux: /etc/rc.d/init.d/coda-client
  4. #
  5. # Desc: The CODA filesystem client cache manager (venus)
  6. # Runlevel: 35 rcX
  7. #
  8. # (C) FEB 2002 by Ren� Rebe <rene.rebe@gmx.net>
  9. #
  10. main_begin
  11. block_begin(start, `starting CODA cache manager (venus) ...')
  12. check(`/opt/coda/sbin/venus &'=
  13. block_end
  14. block_begin(stop, `stopping CODA cache manager (venus) ...')
  15. check(`killall -TERM venus')
  16. check(`umount /coda')
  17. block_end
  18. main_end