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.
 
 
 
 
 
 

19 lines
351 B

#!/bin/sh
#
# ROCK Linux: /etc/init.d/smbmount
#
# Desc: mounting and unmounting for SMB shares
# Runlevel: 75 rcX
#
main_begin
block_begin(start, `Starting SMB share mounting.')
check(`mount -av -t smbfs')
block_end
block_begin(stop, `Stopping SMB share mounting.')
check(`umount -av -t smbfs')
block_end
main_end