mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-18 03:28:19 +01:00
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
|