Skip to content

Instantly share code, notes, and snippets.

@false-git
Last active January 2, 2016 18:59
Show Gist options
  • Save false-git/8347736 to your computer and use it in GitHub Desktop.
Save false-git/8347736 to your computer and use it in GitHub Desktop.
smbdをlaunchdから起動するためのplistファイル。 /Library/LaunchDaemons/ に置き、以下のコマンドで有効化 # launchctl load -w /Library/LaunchDaemons/org.samba.smbd.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.samba.smbd</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/sbin/smbd</string>
<string>-F</string>
</array>
<key>OnDemand</key>
<false/>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>ServiceDescription</key>
<string>samba</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment