11 lines
113 B
Bash
11 lines
113 B
Bash
#!/bin/sh
|
|
|
|
case $1 in
|
|
start)
|
|
echo "The smb initialization is skipped"
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|