summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2021-09-30 11:51:31 -0700
committerJohn McCrae <john.mccrae@progress.com>2021-09-30 12:36:56 -0700
commite6b91cea68e61a49381668fecdfb5fc28e059401 (patch)
tree4aa5c824997c2a81772f079e5d2f970ed2bcbf05
parenta7ea044e91dd87e7f228e285fcd03bbf58ece61d (diff)
downloadchef-e6b91cea68e61a49381668fecdfb5fc28e059401.tar.gz
Updated the package source resource to accept credentials and updated the code to be more readable
Signed-off-by: John McCrae <john.mccrae@progress.com>
-rw-r--r--lib/chef/resource/powershell_package_source.rb30
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/chef/resource/powershell_package_source.rb b/lib/chef/resource/powershell_package_source.rb
index 6a91b8d0b8..08b5f1809f 100644
--- a/lib/chef/resource/powershell_package_source.rb
+++ b/lib/chef/resource/powershell_package_source.rb
@@ -36,8 +36,8 @@ class Chef
source_location "https://pkgs.dev.azure.com/some-org/some-project/_packaging/some_feed/nuget/v2"
publish_location "https://pkgs.dev.azure.com/some-org/some-project/_packaging/some_feed/nuget/v2"
trusted false
- user_name "someuser@somelocation.io"
- user_pass "my_password"
+ user "someuser@somelocation.io"
+ password "my_password"
provider_name "PSRepository"
action :register
end
@@ -97,8 +97,8 @@ class Chef
source_name "PowerShellModules"
new_name "GoldFishBowl"
trusted true
- user_name "user@domain.io"
- user_pass "some_secret_password"
+ user "user@domain.io"
+ password "some_secret_password"
action :set
end
```
@@ -117,10 +117,10 @@ class Chef
description: "A label that names your package source.",
name_property: true
- property :new_name, String,
- description: "Used when updating the name of a NON-PSRepository"
+ property :new_name, introduced: "17.5.23", String,
+ description: "Used to change the name of a standard PackageSource."
- property :source_location, String,
+ property :source_location, introduced: "17.5.23", String,
description: "The URL to the location to retrieve modules from."
alias :url :source_location
@@ -138,10 +138,10 @@ class Chef
description: "Whether or not to trust packages from this source. Used when creating a NON-PSRepository Package Source",
default: false
- property :user_name, String,
+ property :user, introduced: "17.5.23", String,
description: "A username that, as part of a credential object, is used to register a repository or other package source with."
- property :user_pass, String,
+ property :password, introduced: "17.5.23", String,
description: "A password that, as part of a credential object, is used to register a repository or other package source with."
property :provider_name, String,
@@ -256,9 +256,9 @@ class Chef
else
install_policy = "Untrusted"
end
- if new_resource.user_name && new_resource.user_pass
- cmd = "$user = '#{new_resource.user_name}';"
- cmd << "[securestring]$secure_password = Convertto-SecureString -String '#{new_resource.user_pass}' -AsPlainText -Force;"
+ if new_resource.user && new_resource.password
+ cmd = "$user = '#{new_resource.user}';"
+ cmd << "[securestring]$secure_password = Convertto-SecureString -String '#{new_resource.password}' -AsPlainText -Force;"
cmd << "$Credentials = New-Object System.Management.Automation.PSCredential -Argumentlist ($user, $secure_password);"
cmd << "#{cmdlet_type}-PSRepository -Name '#{new_resource.source_name}'"
cmd << " -SourceLocation '#{new_resource.source_location}'" if new_resource.source_location
@@ -281,9 +281,9 @@ class Chef
end
def build_package_source_command(cmdlet_type, new_resource)
- if new_resource.user_name && new_resource.user_pass
- cmd = "$user = '#{new_resource.user_name}';"
- cmd << "[securestring]$secure_password = Convertto-SecureString -String '#{new_resource.user_pass}' -AsPlainText -Force;"
+ if new_resource.user && new_resource.password
+ cmd = "$user = '#{new_resource.user}';"
+ cmd << "[securestring]$secure_password = Convertto-SecureString -String '#{new_resource.password}' -AsPlainText -Force;"
cmd << "$Credentials = New-Object System.Management.Automation.PSCredential -Argumentlist ($user, $secure_password);"
cmd << "#{cmdlet_type}-PackageSource -Name '#{new_resource.source_name}'"
cmd << " -Location '#{new_resource.source_location}'" if new_resource.source_location