mirror of https://github.com/containers/podman.git
Fix 'restart' event in journald
Ensure that we can decode the restart event with the new journald events. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
parent
d7c367aa61
commit
4d348d7839
|
@ -144,6 +144,8 @@ func StringToStatus(name string) (Status, error) {
|
|||
return Remove, nil
|
||||
case Renumber.String():
|
||||
return Renumber, nil
|
||||
case Restart.String():
|
||||
return Restart, nil
|
||||
case Restore.String():
|
||||
return Restore, nil
|
||||
case Save.String():
|
||||
|
|
Loading…
Reference in New Issue