Francis Devereux <[email protected]> wrote: [snip] > > [snip] I sometimes find that I need to uninstall the privileged helper > tool and then let RPCEmu install it again to get networking to work, > unfortunately the script to uninstall it isn't in the binary distribution, > it's only in the source at src/macosx/AuthorizedTasks/ToolUninstaller.sh.
Found it. #! /bin/sh # This uninstalls the privileged helper tool used by RPCEmu's networking code. It's necessary to run this as part of your "clean" cycle testing to ensure that an old version is not run. companyID=org.devrx.RPCEmu sudo launchctl unload -w /Library/LaunchDaemons/$companyID.plist sudo rm /Library/LaunchDaemons/$companyID.plist sudo rm /Library/PrivilegedHelperTools/$companyID sudo rm /var/run/$companyID.socket echo echo Did unload or remove $companyID files from system echo unless errors above indicated that some items did not exist. -- David Pitt _______________________________________________ Rpcemu mailing list [email protected] http://www.riscos.info/cgi-bin/mailman/listinfo/rpcemu
