Skip to content

Commit

Permalink
systemd: Drop ABRT/reportd support
Browse files Browse the repository at this point in the history
Fedora 40 was the last OS which still had reportd, and we stopped
releasing and testing there.
  • Loading branch information
martinpitt committed Feb 17, 2025
1 parent aa99d0b commit 9ef2e8b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 789 deletions.
330 changes: 0 additions & 330 deletions pkg/systemd/abrtLog.jsx

This file was deleted.

13 changes: 2 additions & 11 deletions pkg/systemd/logDetails.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import * as timeformat from "timeformat";

import React from 'react';
import { EmptyStatePanel } from "cockpit-components-empty-state.jsx";
import { AbrtLogDetails } from "./abrtLog.jsx";
import { ExclamationCircleIcon } from '@patternfly/react-icons';
import { Breadcrumb, BreadcrumbItem } from "@patternfly/react-core/dist/esm/components/Breadcrumb/index.js";
import { Button } from "@patternfly/react-core/dist/esm/components/Button/index.js";
Expand Down Expand Up @@ -175,16 +174,8 @@ export class LogEntry extends React.Component {
const entry = this.state.entry;
const date = timeformat.dateTimeSeconds(entry.__REALTIME_TIMESTAMP / 1000);

if (this.state.problemPath) {
breadcrumb = cockpit.format(_("$0: crash at $1"), entry.PROBLEM_BINARY, date);
content = <AbrtLogDetails problem={this.state.problemPath}
entry={entry}
service={this.state.abrtService}
reloadProblems={this.goHome} />;
} else {
breadcrumb = cockpit.format(_("Entry at $0"), date);
content = <LogDetails entry={entry} />;
}
breadcrumb = cockpit.format(_("Entry at $0"), date);
content = <LogDetails entry={entry} />;
}

return (
Expand Down
Loading

0 comments on commit 9ef2e8b

Please sign in to comment.