mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2026-06-28 01:58:34 +00:00
7 lines
99 B
Bash
7 lines
99 B
Bash
#!/bin/sh
|
|
|
|
smbd -s smb.conf
|
|
trap 'echo "stopping smbd..."' SIGTERM SIGINT
|
|
sleep infinity &
|
|
wait $!
|