From 2a3d5877999f1a5e11478540ad2c30ce647837e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Marie?= Date: Tue, 29 Jan 2019 06:55:08 +0100 Subject: [PATCH] add unwind support for root.key --- sysclean.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sysclean.pl b/sysclean.pl index 6ea5c32..62970af 100755 --- a/sysclean.pl +++ b/sysclean.pl @@ -2,7 +2,7 @@ # # $OpenBSD$ # -# Copyright (c) 2016-2017 Sebastien Marie +# Copyright (c) 2016-2019 Sebastien Marie # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above @@ -260,6 +260,9 @@ sub add_expected_rcctl } elsif ('unbound' eq $_) { $self->{expected}{'/var/unbound/db/root.key'} = 1; + } elsif ('unwind' eq $_) { + $self->{expected}{'/etc/unwind/trustanchor/root.key'} = 1; + } elsif ('xenodm' eq $_) { $self->{ignored}{'/etc/X11/xenodm/authdir'} = 1; }