Sha256: ebe2b4ab98be6882de3ec4d68bad2d0ce2cfe04b6c9cdb96140f9ba1af8ba498
Contents?: true
Size: 1.7 KB
Versions: 23
Compression:
Stored size: 1.7 KB
Contents
export const preupgradeReports = [ { hostId: 5, entries: [ { title: 'Fix me!', severity: 'info', id: 42, hostname: 'host.example.com', flags: [], }, { title: 'I am broken too', severity: 'medium', id: 43, hostname: 'host.example.com', flags: [], }, ], }, { hostId: 6, entries: [ { title: 'Octocat is not happy', severity: 'high', id: 44, hostname: 'foo.example.com', flags: ['inhibitor'], }, { title: 'Not enough credits', severity: 'low', id: 45, hostname: 'foo.example.com', flags: [], }, { title: 'SELinux is turned off', severity: 'medium', id: 46, hostname: 'foo.example.com', flags: [], }, { title: 'Root password is too short', severity: 'medium', id: 47, hostname: 'foo.example.com', flags: [], }, { title: 'No chocolate chip cookies in cookie jar', severity: 'high', id: 49, hostname: 'foo.example.com', flags: [], }, ], }, ]; export const reportsWithRemediations = [ { hostId: 5, entries: [ { title: 'Fix me!', severity: 'info', detail: { remediations: [{ type: 'hint' }] }, }, { title: 'I am broken too', severity: 'medium' }, ], }, { hostId: 6, entries: [ { title: 'Octocat is not happy', severity: 'high', detail: { remediations: [{ type: 'command' }] }, }, { title: 'Not enough credits', severity: 'low' }, ], }, ];
Version data entries
23 entries across 23 versions & 1 rubygems