Skip to content
This repository has been archived by the owner on Jul 21, 2021. It is now read-only.

Commit

Permalink
Merge pull request #11 from adamcrews/release
Browse files Browse the repository at this point in the history
Fix a couple lint warnings and cut a new release
  • Loading branch information
adamcrews committed Dec 17, 2014
2 parents 6124c08 + 19fc826 commit afed77d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 18 deletions.
9 changes: 0 additions & 9 deletions Modulefile

This file was deleted.

6 changes: 3 additions & 3 deletions manifests/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

if $security_center {
if $activation_code {
fail("security_center and activation_code are mutually exclusive.")
fail('security_center and activation_code are mutually exclusive.')
}

#default for versions without nessuscli
if $::nessus_cli {
$activate_command = "nessuscli fetch --security-center"
$activate_command = 'nessuscli fetch --security-center'
} else {
$activate_command = "nessus-fetch --security-center"
$activate_command = 'nessus-fetch --security-center'
}

exec { 'Activate Nessus':
Expand Down
12 changes: 6 additions & 6 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"name": "adamcrews-nessus",
"version": "0.2.0",
"source": "git://github.com/adamcrews/puppet-nessus",
"version": "0.3.0",
"source": "https://github.com/adamcrews/puppet-nessus",
"author": "Adam Crews",
"license": "Apache License, Version 2.0",
"license": "Apache-2.0",
"summary": "Nessus Module",
"description": "Nessus Module to manage the Nessus Vulnerability scanner.",
"project_page": "https://github.com/adamcrews/puppet-nessus",
"requirements": [
{
"name": "pe",
"version_requirement": ">= 3.2.0 < 3.4.0"
"version_requirement": ">=3.2.0 <3.4.0"
},
{
"name": "puppet",
"version_requirement": "3.x"
"version_requirement": ">=3.0.0 <4.0.0"
}
],
"dependencies": [
{
"name": "puppetlabs/stdlib",
"version_requirement": ">= 3.2.1"
"version_requirement": ">= 3.2.1 <5.0.0"
}
],
"types": [
Expand Down

0 comments on commit afed77d

Please sign in to comment.