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:
Matthew Heon 2019-05-03 10:43:14 -04:00
parent d7c367aa61
commit 4d348d7839
1 changed files with 2 additions and 0 deletions

View File

@ -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():