Release 2.11.0

This commit is contained in:
Jérémy Lecour 2021-06-30 14:59:54 +02:00 committed by Jérémy Lecour
parent 1960e9097a
commit 09f1789a53
4 changed files with 17 additions and 13 deletions

View file

@ -10,20 +10,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
* bkctld-archive: confirmation defaults to 'No'
* bkctld-remove: confirmation defaults to 'No'
* bkctld-remove: remove config directory
### Deprecated
### Removed
### Fixed
* force flag must be exported
### Security
## [2.11.0] - 2021-06-29
### Changed
* bkctld-remove: remove config directory
### Fixed
* force flag must be exported
## [2.10.0] - 2021-06-29
### Added

View file

@ -24,13 +24,13 @@ test -d "${archive_jail_path}" && error "${jail_name}: archive already exists" 2
if [ "${FORCE}" != "1" ]; then
answer=""
while :; do
printf "> Are you sure you want to archive jail \`%s'? [y,N,?] " "${jail_name}"
printf "> Are you sure you want to archive jail \`%s'? [Y,n,?] " "${jail_name}"
read -r answer
case $answer in
[Yy] )
[Yy]|"" )
break
;;
[Nn]|"" )
[Nn] )
tty -s && echo "Abort." >&2
exit 101
;;

View file

@ -28,13 +28,13 @@ fi
if [ "${FORCE}" != "1" ]; then
answer=""
while :; do
printf "> Are you sure you want to delete jail \`%s'? [y,N,?] " "${jail_name}"
printf "> Are you sure you want to delete jail \`%s'? [Y,n,?] " "${jail_name}"
read -r answer
case $answer in
[Yy] )
[Yy]|"" )
break
;;
[Nn]|"" )
[Nn] )
tty -s && echo "Abort." >&2
exit 101
;;

View file

@ -6,7 +6,7 @@
[ -f /etc/default/bkctld ] && . /etc/default/bkctld
VERSION="2.10.0"
VERSION="2.11.0"
LIBDIR=${LIBDIR:-/usr/lib/bkctld}
CONFDIR="${CONFDIR:-/etc/evobackup}"