Changeset 559
- Timestamp:
- 12/16/2011 18:09:04 (5 months ago)
- Location:
- branches/confman-1.9
- Files:
-
- 5 edited
-
. (modified) (1 prop)
-
confman.conf.5.in (modified) (1 diff)
-
confman.conf.in (modified) (1 diff)
-
confman.conf.sample.in (modified) (1 diff)
-
confmanlib.sh.in (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/confman-1.9
-
branches/confman-1.9/confman.conf.5.in
r481 r559 131 131 Defaults to "${HOME}/src/conf". Can be used to change the location of the 132 132 working copy. 133 .It REPO_REMOTE_USER 134 Defaults to "", using the underlying 135 .Xr svn 1 136 behavior. Use this to override the username for the repository host. 133 137 .It SINGULARITIES 134 138 Defaults to "". This is a white-space delimited list of all files that are to -
branches/confman-1.9/confman.conf.in
r516 r559 33 33 # The directory from the root of the repository to our checkpoints: 34 34 REPO_CHECKPTS="checkpoints" 35 36 # Our username on the repository host 37 REPO_REMOTE_USER="" 35 38 36 39 # Where to keep our "working copy" of the system: -
branches/confman-1.9/confman.conf.sample.in
r385 r559 7 7 8 8 # The hostname providing our config repository: 9 REPO_HOSTNAME="svn. timesinks.net"9 REPO_HOSTNAME="svn.example.com" 10 10 11 11 # The path on the remote host to find the repository: -
branches/confman-1.9/confmanlib.sh.in
r557 r559 40 40 function conf_repo_uri { 41 41 local proto="${REPO_PROTOCOL%:/*}" 42 local uri 42 local uri user 43 43 44 44 # When we're running in export mode and the user has configured … … 69 69 done 70 70 71 user=${REPO_REMOTE_USER:+${REPO_REMOTE_USER}@} 72 71 73 case $proto in 72 74 file) … … 74 76 ;; 75 77 *) 76 uri="${REPO_PROTOCOL}${ REPO_HOSTNAME}${REPO_PATH}"78 uri="${REPO_PROTOCOL}${user}${REPO_HOSTNAME}${REPO_PATH}" 77 79 ;; 78 80 esac
Note: See TracChangeset
for help on using the changeset viewer.
