Skip to content

Commit

Permalink
Update package names to take architecture into account
Browse files Browse the repository at this point in the history
  • Loading branch information
jsf9k committed Jun 16, 2024
1 parent b91315d commit b8b4c83
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion vars/Amazon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package_gpg_key_object_name: RPM-GPG-KEY-Tenable-4096

# The name of the S3 object corresponding to the Nessus Agent system
# package
package_object_name: NessusAgent-10.5.1-amzn2.x86_64.rpm
package_object_name: NessusAgent-10.5.1-amzn2.{{ ansible_architecture }}.rpm
2 changes: 1 addition & 1 deletion vars/Debian.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
# The name of the S3 object corresponding to the Nessus Agent system
# package
package_object_name: NessusAgent-10.5.1-debian10_amd64.deb
package_object_name: NessusAgent-10.5.1-debian10_{{ 'amd64' if ansible_architecture == 'x86_64' else 'arm64' }}.deb
2 changes: 1 addition & 1 deletion vars/Fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package_gpg_key_object_name: RPM-GPG-KEY-Tenable-4096

# The name of the S3 object corresponding to the Nessus Agent system
# package
package_object_name: NessusAgent-10.5.1-fc38.x86_64.rpm
package_object_name: NessusAgent-10.5.1-fc38.{{ ansible_architecture }}.rpm
2 changes: 1 addition & 1 deletion vars/Ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
# The name of the S3 object corresponding to the Nessus Agent system
# package
package_object_name: NessusAgent-10.5.1-ubuntu1404_amd64.deb
package_object_name: NessusAgent-10.5.1-ubuntu1404_{{ 'amd64' if ansible_architecture == 'x86_64' else 'arm64' }}.deb

0 comments on commit b8b4c83

Please sign in to comment.