File tree 6 files changed +9
-6
lines changed
6 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
7
## [ Unreleased]
8
+
9
+ ## [ 0.15.4] 2022-12-15
8
10
### Added
9
11
- set-attr: add jail attributes "raw_sockets", "sysvipc" (#247 , #248 )
10
12
- import/export/prepare: support signing pots (#221 )
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export IFCONFIG_FORMAT=addr:default
34
34
# Environment initialization and initial checks
35
35
36
36
# shellcheck disable=SC2034
37
- _POT_VERSION=0.15.3
37
+ _POT_VERSION=0.15.4
38
38
_POT_PATHNAME=" $( realpath " $0 " ) "
39
39
_POT_PREFIX=" $( dirname " ${_POT_PATHNAME} " ) "
40
40
_POT_INCLUDE=" $( realpath " ${_POT_PREFIX} /../share/pot" ) "
Original file line number Diff line number Diff line change 56
56
# built documents.
57
57
#
58
58
# The short X.Y version.
59
- version = "0.15.3 "
59
+ version = "0.15.4 "
60
60
# The full version, including alpha/beta/rc tags.
61
- release = "0.15.3 "
61
+ release = "0.15.4 "
62
62
63
63
# The language for content autogenerated by Sphinx. Refer to documentation
64
64
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -42,10 +42,10 @@ pot-de-init()
42
42
${EXIT} 1
43
43
fi
44
44
for _p in $_pots ; do
45
- if _is_pot_running $_p ; then
45
+ if _is_pot_running " $_p " ; then
46
46
if [ -n " $_force " ]; then
47
47
_debug " Stop the pot $_p "
48
- pot-cmd stop $_p
48
+ pot-cmd stop " $_p "
49
49
else
50
50
_error " At least on pot is still running. Use -f to force the stop of all pots"
51
51
${EXIT} 1
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ _exec_cmd()
69
69
fi
70
70
_ret=$?
71
71
72
- return $_ret
72
+ return " $_ret "
73
73
}
74
74
75
75
pot-exec ()
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ _export_pot()
87
87
else
88
88
_noerr=0
89
89
echo " $_meta " > " ${_file} .meta"
90
+ # shellcheck disable=SC2320
90
91
_noerr=$(( _noerr+ $? ))
91
92
(cat " ${_file} " " ${_file} .meta" ) | skein1024 -q > " ${_file} .skein"
92
93
_noerr=$(( _noerr+ $? ))
You can’t perform that action at this time.
0 commit comments