mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-26 05:35:12 +02:00
10 lines
122 B
Bash
Executable file
10 lines
122 B
Bash
Executable file
#!/bin/sh
|
|
|
|
exec 2>&1
|
|
|
|
[ -r ./conf ] && . ./conf
|
|
|
|
mkdir -p /run/samba
|
|
mkdir -p /run/lock/samba
|
|
|
|
exec smbd -F ${OPTS:--d1}
|