@@ -319,6 +325,12 @@ export function HostDetails({ host }: { host: LhpData }) {
+
+
+ ({ key: x, value: '✅' }))} />
+
+ ({ key: x, value: '✅' }))} />
+
);
}
diff --git a/website/src/components/app/-data.tsx b/website/src/components/app/-data.tsx
index 64348d6..f4e954d 100644
--- a/website/src/components/app/-data.tsx
+++ b/website/src/components/app/-data.tsx
@@ -125,8 +125,20 @@ export const LHP_PATROL_REPORT_SCHEMA = {
items: { type: 'string' },
type: 'array',
},
+ systemdServices: { $comment: 'List of systemd services found on host.', items: { type: 'string' }, type: 'array' },
+ systemdTimers: { $comment: 'List of systemd timers found on host.', items: { type: 'string' }, type: 'array' },
},
- required: ['sshAuthorizedKeys', 'dockerContainers', 'distribution', 'kernel', 'hardware', 'cloud', 'host'],
+ required: [
+ 'systemdTimers',
+ 'systemdServices',
+ 'sshAuthorizedKeys',
+ 'dockerContainers',
+ 'distribution',
+ 'kernel',
+ 'hardware',
+ 'cloud',
+ 'host',
+ ],
type: 'object',
} as const satisfies JSONSchema;