DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21083>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21083

exec "cvs commit" doesn't work for sudo





------- Additional Comments From [EMAIL PROTECTED]  2003-06-25 15:41 -------
I think I had something like this... I have a build that runs as root, and sudos
out of it to do cvs work... I think the problem crops up that cvs can't find
your home directory so you need to give it working home environement vareable
too (I presume this is on a unix system from your dirs). Here is a snippet I use

    <apply executable="sudo"
           dir="${dir.working}"
           parallel="false"
           failonerror="true">
      <env key="HOME" value="/home/${user.cvs.commit}"/>
      <arg value="-u"/>
      <arg value="${user.cvs.commit}"/>
      <arg value="cvs"/>
      <arg value="commit"/>
      <arg value="-m"/>
      <arg value="auto-commit of symlink files"/>
      <srcfile/>
      <fileset dir="${dir.working}"
               followSymlinks="false">
        <patternset refid="files.all.symlink"/>
      </fileset>
    </apply>

I supsect this is 100% cvs magic problems, so it probably shouldn't be in the
Ant bugzilla. Invalidate if you concur...

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to