| 33 | === Unable to get info on https://.../tags === |
| 34 | |
| 35 | If you get this error at the beginning of the deploy phase when executing `ant deploy`, this means you don't have valid cached credentials to access the `tags` branch in your configuration database that can be used by `svnkit`, the SVN client used by `ant`. To fix the problem, try to write to `tags` branch using `jsvn` utility provided in `external/svnkit`. You can use the following commands as an example, changing the URLs to match your configuration database: |
| 36 | {{{ |
| 37 | external/svnkit/jsvn cp htpp://quattorsrv.example.org/quattor/trunk htpp://quattorsrv.example.org/quattor/tags/test -m 'Deploy test' |
| 38 | }}} |
| 39 | |
| 40 | When executing this command, you should be asked to enter your credentials (userid and password). Note that depending on your exact actual configuration, you may have to define environment variable `JAVA_HOME` to reflect the directory containing `bin/java`. |
| 41 | |
| 42 | After doing the previous step, check it works by trying to remove the previously created branch. This should work without `jsvn` asking you your credentials. |
| 43 | {{{ |
| 44 | external/svnkit/jsvn rm htpp://quattorsrv.example.org/quattor/tags/test -m 'Remove test' |
| 45 | }}} |
| 46 | |