mirror of
https://github.com/hectorm/docker-qemu-reactos
synced 2025-01-09 18:46:31 +00:00
12 lines
189 B
Bash
Executable File
12 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ ! -d /run/samba/ ]; then
|
|
install -m 755 -o root -g root -d /run/samba/
|
|
fi
|
|
|
|
cd /run/samba/
|
|
exec 2>&1
|
|
exec /usr/sbin/smbd --foreground --debug-stdout --debuglevel=3
|