- Timestamp:
- 06/29/2009 12:49:48 (3 years ago)
- Location:
- branches/confman-1.9
- Files:
-
- 6 edited
-
. (modified) (1 prop)
-
abspath.in (modified) (1 prop)
-
confexport.8 (modified) (1 diff)
-
conflock.in (modified) (1 prop)
-
confman.conf.in (modified) (1 diff)
-
confmanlib.sh.in (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/confman-1.9
-
branches/confman-1.9/abspath.in
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/confman-1.9/confexport.8
r333 r362 54 54 will be written to the file specified in CONF_EXPORT_FILE (See 55 55 .Xr confman.conf 5) . 56 .Pp 57 A persistent working copy can be specified with CONF_EXPORT_WORK_PATH in 58 .Xr confman.conf 5 . 59 This eliminates the performance overhead of repeatedly creating and 60 destroying temporary working copies. 56 61 .Sh SECURITY CONSIDERATIONS 57 62 Because a tarball with all your configurations can potentially have sensitive -
branches/confman-1.9/conflock.in
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/confman-1.9/confman.conf.in
r326 r362 69 69 CONF_EXPORT_USER="$(whoami)" 70 70 CONF_EXPORT_GROUP="${CONF_GROUP}" 71 CONF_EXPORT_WORK_PATH="" 71 72 CONF_SSH_KEY="/root/.ssh/id_rsa" 72 73 -
branches/confman-1.9/confmanlib.sh.in
- Property svn:mergeinfo changed
/trunk/confmanlib.sh.in merged: 359-360
r358 r362 196 196 function conf_export { 197 197 local tarball="$1" 198 WORK_PATH=$(conf_tmp_dir) 198 199 if [ -z "${CONF_EXPORT_WORK_PATH}" ]; then 200 WORK_PATH=$(conf_tmp_dir) 201 else 202 WORK_PATH="${CONF_EXPORT_WORK_PATH}" 203 fi 204 199 205 conf_checkout_tree 200 206 tar -czf "$tarball" -C "${WORK_PATH}" . 201 rm -rf ${WORK_PATH} 207 208 if [ -z "${CONF_EXPORT_WORK_PATH}" ]; then 209 rm -rf ${WORK_PATH} 210 fi 202 211 } 203 212 - Property svn:mergeinfo changed
Note: See TracChangeset
for help on using the changeset viewer.
