Comment 7 for bug 1906877

Revision history for this message
Brian Murray (brian-murray) wrote :

I'm not sure how you would get it in a state where reporting=false and autoreport=true. These are the dbus settings for the 3 possible states in hirsute with the new version of gnome-control-center.

"Never"
WhoopsiePreferences
node /com/ubuntu/WhoopsiePreferences {
  interface com.ubuntu.WhoopsiePreferences {
    properties:
      readonly b ReportCrashes = false;
      readonly b ReportMetrics = true;
      readonly b AutomaticallyReportCrashes = false;
  };
};

"Automatic"
bdmurray@clean-hirsute-amd64:~$ gdbus introspect --system --only-properties --dest com.ubuntu.WhoopsiePreferences --object-path /com/ubuntu/WhoopsiePreferences
node /com/ubuntu/WhoopsiePreferences {
  interface com.ubuntu.WhoopsiePreferences {
    properties:
      readonly b ReportCrashes = true;
      readonly b ReportMetrics = true;
      readonly b AutomaticallyReportCrashes = true;
  };
};

"Manual"
bdmurray@clean-hirsute-amd64:~$ gdbus introspect --system --only-properties --dest com.ubuntu.WhoopsiePreferences --object-path /com/ubuntu/
WhoopsiePreferences
node /com/ubuntu/WhoopsiePreferences {
  interface com.ubuntu.WhoopsiePreferences {
    properties:
      readonly b ReportCrashes = true;
      readonly b ReportMetrics = true;
      readonly b AutomaticallyReportCrashes = false;
  };
};