mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 20:17:54 +00:00
7 lines
102 B
Bash
7 lines
102 B
Bash
#!/bin/sh
|
|
|
|
smbd -s smb.conf
|
|
trap 'echo "stopping smbd..."' SIGTERM SIGINT
|
|
tail -f /dev/null &
|
|
wait $!
|