Skip to content
Snippets Groups Projects
Commit 03056d78 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

move to etc/daemons/.

git-svn-id: http://root.cern.ch/svn/root/trunk@14501 27541ba8-7e3a-0410-8455-c3a389f83636
parent 2f795f5a
No related branches found
No related tags found
No related merge requests found
The rootd and proofd startup scripts:
rootd - rootd startup file for RedHat based systems (/etc/rc.d/init.d)
rootd.xinetd - rootd startup file for xinetd (/etc/xinetd.d)
proofd - proofd startup file for RedHat based systems (/etc/rc.d/init.d)
proofd.xinetd - proofd startup file for xinetd (/etc/xinetd.d)
ch.cern.rootd.plist - rootd MacOS X 10.4 launchd script
ch.cern.proofd.plist - proofd MacOS X 10.4 launchd script
Modify the path in the above two scripts as needed and copy both files to
/Library/LaunchDaemons/ and do:
launchctl load /Library/LaunchDaemons/ch.cern.proofd.plist
launchctl load /Library/LaunchDaemons/ch.cern.rootd.plist
at reboot the rootd and proofd will be executed again.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>ch.cern.proofd</string>
<key>OnDemand</key>
<false/>
<key>Program</key>
<string>/opt/root/bin/proofd</string>
<key>ProgramArguments</key>
<array>
<string>/opt/root/bin/proofd</string>
<string>/opt/root</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>ServiceDescription</key>
<string>proofd daemon</string>
</dict>
</plist>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>ch.cern.rootd</string>
<key>OnDemand</key>
<false/>
<key>Program</key>
<string>/opt/root/bin/rootd</string>
<key>ProgramArguments</key>
<array>
<string>/opt/root/bin/rootd</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>ServiceDescription</key>
<string>rootd file transfer daemon</string>
</dict>
</plist>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment