mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-19 14:17:48 +00:00
StopSignal is allowed to be 0
If StopSignal is 0, it is assumed that the default signal will be used. Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
This commit is contained in:
parent
12f19ca013
commit
b10fb66c28
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ func prepareDB(db *sql.DB) (err error) {
|
|||
UseImageConfig INTEGER NOT NULL,
|
||||
CHECK (Stdin IN (0, 1)),
|
||||
CHECK (UseImageConfig IN (0, 1)),
|
||||
CHECK (StopSignal>0)
|
||||
CHECK (StopSignal>=0)
|
||||
);
|
||||
`
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue