Merge pull request #1273 from silversword411/develop

Adding client and site to mgmt command find_software
This commit is contained in:
Dan 2022-09-06 11:59:07 -07:00 committed by GitHub
commit 8f5d62bb81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class Command(BaseCommand):
if search in i["name"].lower(): if search in i["name"].lower():
self.stdout.write( self.stdout.write(
self.style.SUCCESS( self.style.SUCCESS(
f"Found {i['name']} installed on {agent.hostname}" f"Found {i['name']} installed on: {agent.client.name}\\{agent.site.name}\\{agent.hostname}"
) )
) )
break break