मैंने लोड में चलाने के लिए सभी लाइब्रेरी / लाईब्रेरी / लॉन्चडैमन्स सभी कॉन्फ़िगर किए हैं। हालांकि, बूट करने के बाद, उनमें से कोई भी स्वचालित रूप से लोड नहीं होता है। इस निर्देशिका की प्रत्येक अन्य स्क्रिप्ट स्वचालित रूप से लोड होती है। मेरा एकमात्र काम यह है कि लॉन्चकंट्रोल नामक एक ऐप को मैन्युअल रूप से लोड करने के लिए उपयोग किया जाए, जो ठीक काम करता है। यहाँ इन लिपियों में से एक का पाठ है
<?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>Disabled</key>
<false/>
<key>GroupName</key>
<string>wheel</string>
<key>InitGroups</key>
<true/>
<key>Label</key>
<string>com.usseinstein.dns</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/sbin/dnsmasq</string>
<string>--keep-in-foreground</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>StandardErrorPath</key>
<string>/tmp/com.local.dns.stderr</string>
<key>StandardOutPath</key>
<string>/tmp/com.local.dns.stdout</string>
<key>UserName</key>
<string>root</string>
</dict>
</plist>
sudo launchctl load /Library/LaunchDaemons/my.plist
?