We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edd3142 commit eab3e4fCopy full SHA for eab3e4f
tracer/controllers/default.py
@@ -144,7 +144,9 @@ def create_reboot_required_file(self):
144
"""
145
if self.applications.count_type(Applications.TYPES["STATIC"]):
146
with open("/run/reboot-required", "w") as fp:
147
- fp.write("Tracer says reboot is required\n")
+ fp.write("Tracer says reboot is required for:\n")
148
+ for app in self.applications.filter_types([Applications.TYPES["STATIC"]]).unique().sorted("name"):
149
+ fp.write(f"- {app.name}\n")
150
151
def _restartable_applications(self, applications, args):
152
return applications.exclude_types([
0 commit comments