very_verbose now includes verbose
This commit is contained in:
parent
f99404a04a
commit
d6aa92523b
3 changed files with 9 additions and 3 deletions
|
@ -266,8 +266,9 @@ while [ "$i" -lt "$no_shares" ]; do
|
||||||
VERBOSE="-v"
|
VERBOSE="-v"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# verbosity for cp
|
# MORE verbosity, includes standard verbosity
|
||||||
if [ -f "$c_vverbose" ]; then
|
if [ -f "$c_vverbose" ]; then
|
||||||
|
VERBOSE="-v"
|
||||||
VVERBOSE="-v"
|
VVERBOSE="-v"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
0.2 to 0.3:
|
||||||
|
* added "very_verbose"
|
||||||
|
* normal "verbose" is now less verbose
|
||||||
|
|
||||||
0.1 to 0.2:
|
0.1 to 0.2:
|
||||||
* Added plausibility check
|
* Added plausibility check
|
||||||
* Updated and made documentation readable
|
* Updated and made documentation readable
|
||||||
|
|
|
@ -128,7 +128,8 @@ Each source has at least the following files:
|
||||||
Additionally a source may have the following files:
|
Additionally a source may have the following files:
|
||||||
|
|
||||||
- `verbose` whether to be verbose (passes -v to rsync)
|
- `verbose` whether to be verbose (passes -v to rsync)
|
||||||
- `exclude` exclude list for rsync. One exclude specification on each line.
|
- `very_verbose` be very verbose (-v also for mkdir, cp, rm)
|
||||||
|
- `exclude` exclude list for rsync. '\\n' seperated list.
|
||||||
- `rsync_options' extra options to pass to rsync
|
- `rsync_options' extra options to pass to rsync
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
Loading…
Reference in a new issue