* @throws com.sun.grid.ca.GridCAException if the create of the daemon failed
*/
public void createDaemon(String daemon, String user, String email) throws GridCAException {
LOGGER.entering("GridCAImpl", "createDaemon");
Expect pb = createProcess();
pb.command().add("-sdm_daemon");
pb.command().add(user + ":" + daemon + ":" + email);
execute(pb);
LOGGER.exiting("GridCAImpl", "createDaemon");