Skip to content

Commit 1617cf5

Browse files
authored
Prepare 0.15.4 (#250)
* Prepare 0.15.4 * Adapt to latest shellcheck
1 parent f701210 commit 1617cf5

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.15.4] 2022-12-15
810
### Added
911
- set-attr: add jail attributes "raw_sockets", "sysvipc" (#247, #248)
1012
- import/export/prepare: support signing pots (#221)

bin/pot

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export IFCONFIG_FORMAT=addr:default
3434
# Environment initialization and initial checks
3535

3636
# shellcheck disable=SC2034
37-
_POT_VERSION=0.15.3
37+
_POT_VERSION=0.15.4
3838
_POT_PATHNAME="$(realpath "$0")"
3939
_POT_PREFIX="$(dirname "${_POT_PATHNAME}")"
4040
_POT_INCLUDE="$( realpath "${_POT_PREFIX}/../share/pot")"

share/doc/pot/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = "0.15.3"
59+
version = "0.15.4"
6060
# The full version, including alpha/beta/rc tags.
61-
release = "0.15.3"
61+
release = "0.15.4"
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

share/pot/de-init.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ pot-de-init()
4242
${EXIT} 1
4343
fi
4444
for _p in $_pots ; do
45-
if _is_pot_running $_p ; then
45+
if _is_pot_running "$_p" ; then
4646
if [ -n "$_force" ]; then
4747
_debug "Stop the pot $_p"
48-
pot-cmd stop $_p
48+
pot-cmd stop "$_p"
4949
else
5050
_error "At least on pot is still running. Use -f to force the stop of all pots"
5151
${EXIT} 1

share/pot/exec.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ _exec_cmd()
6969
fi
7070
_ret=$?
7171

72-
return $_ret
72+
return "$_ret"
7373
}
7474

7575
pot-exec()

share/pot/export.sh

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ _export_pot()
8787
else
8888
_noerr=0
8989
echo "$_meta" > "${_file}.meta"
90+
# shellcheck disable=SC2320
9091
_noerr=$((_noerr+$?))
9192
(cat "${_file}" "${_file}.meta") | skein1024 -q > "${_file}.skein"
9293
_noerr=$((_noerr+$?))

0 commit comments

Comments
 (0)