mirror of
https://github.com/containers/podman.git
synced 2025-06-15 13:48:29 +08: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:
@ -46,7 +46,7 @@ func prepareDB(db *sql.DB) (err error) {
|
|||||||
UseImageConfig INTEGER NOT NULL,
|
UseImageConfig INTEGER NOT NULL,
|
||||||
CHECK (Stdin IN (0, 1)),
|
CHECK (Stdin IN (0, 1)),
|
||||||
CHECK (UseImageConfig IN (0, 1)),
|
CHECK (UseImageConfig IN (0, 1)),
|
||||||
CHECK (StopSignal>0)
|
CHECK (StopSignal>=0)
|
||||||
);
|
);
|
||||||
`
|
`
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user