Skip to content

Commit

Permalink
Prepare 0.15.4 (#250)
Browse files Browse the repository at this point in the history
* Prepare 0.15.4

* Adapt to latest shellcheck
  • Loading branch information
grembo committed Dec 15, 2022
1 parent f701210 commit 1617cf5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.15.4] 2022-12-15
### Added
- set-attr: add jail attributes "raw_sockets", "sysvipc" (#247, #248)
- import/export/prepare: support signing pots (#221)
Expand Down
2 changes: 1 addition & 1 deletion bin/pot
Expand Up @@ -34,7 +34,7 @@ export IFCONFIG_FORMAT=addr:default
# Environment initialization and initial checks

# shellcheck disable=SC2034
_POT_VERSION=0.15.3
_POT_VERSION=0.15.4
_POT_PATHNAME="$(realpath "$0")"
_POT_PREFIX="$(dirname "${_POT_PATHNAME}")"
_POT_INCLUDE="$( realpath "${_POT_PREFIX}/../share/pot")"
Expand Down
4 changes: 2 additions & 2 deletions share/doc/pot/conf.py
Expand Up @@ -56,9 +56,9 @@
# built documents.
#
# The short X.Y version.
version = "0.15.3"
version = "0.15.4"
# The full version, including alpha/beta/rc tags.
release = "0.15.3"
release = "0.15.4"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions share/pot/de-init.sh
Expand Up @@ -42,10 +42,10 @@ pot-de-init()
${EXIT} 1
fi
for _p in $_pots ; do
if _is_pot_running $_p ; then
if _is_pot_running "$_p" ; then
if [ -n "$_force" ]; then
_debug "Stop the pot $_p"
pot-cmd stop $_p
pot-cmd stop "$_p"
else
_error "At least on pot is still running. Use -f to force the stop of all pots"
${EXIT} 1
Expand Down
2 changes: 1 addition & 1 deletion share/pot/exec.sh
Expand Up @@ -69,7 +69,7 @@ _exec_cmd()
fi
_ret=$?

return $_ret
return "$_ret"
}

pot-exec()
Expand Down
1 change: 1 addition & 0 deletions share/pot/export.sh
Expand Up @@ -87,6 +87,7 @@ _export_pot()
else
_noerr=0
echo "$_meta" > "${_file}.meta"
# shellcheck disable=SC2320
_noerr=$((_noerr+$?))
(cat "${_file}" "${_file}.meta") | skein1024 -q > "${_file}.skein"
_noerr=$((_noerr+$?))
Expand Down

0 comments on commit 1617cf5

Please sign in to comment.