#!/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
|