Questions tagged «osx-leopard»

8
如何从命令行启动/停止/重新启动已启动的服务?
如何重新启动(例如说我的httpd或afpd),运行任何Mac OS X> = 10.5(Leopard-),而不必使用GUI并转到“ 系统偏好设置”-> “共享”,然后取消选中/选中“ Web共享”? 我正在寻找与Debian的规范相等的规范invoke-rc.d apache2 restart。 编辑:问题是关于一般启动的受控服务,而不是专门针对Apache(这只是一个示例)。


3
在启动的脚本中使用环境变量
我很好奇,是否可以ProgramArguments在Mac OS X Leopard的luanchd脚本的一部分中指定环境变量。 <?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>me.mpietz.MountDevRoot</string> <key>ProgramArguments</key> <array> <string>/bin/sh</string> <string>$HOME/bin/attach-devroot.sh</string> <!-- Instead of using... <string>/Users/mpietz/bin/attach-devroot.sh</string --> </array> <key>RunAtLoad</key> <true/> </dict> </plist>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.