Merge pull request #18 from talkain/master

Fixed the Bonjour enable/disable commands' titles
This commit is contained in:
Marcel Bischoff 2015-10-21 16:02:12 +02:00
commit f16d55795c

View File

@ -642,12 +642,12 @@ defaults write com.apple.QuickTimePlayerX MGPlayMovieOnOpen 1
### Bonjour ### Bonjour
#### Disable Bonjour #### Enable Bonjour
```bash ```bash
defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array "/usr/sbin/mDNSResponder" "-launchd" defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array "/usr/sbin/mDNSResponder" "-launchd"
``` ```
#### Enable Bonjour #### Disable Bonjour
```bash ```bash
defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array-add "-NoMulticastAdvertisements" defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array-add "-NoMulticastAdvertisements"
``` ```