Skip to content

Commit 5ebac3b

Browse files
Merge pull request #2 from psap/ignite
string changes
2 parents 9ed5b93 + 990433a commit 5ebac3b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/ResourceManager/Automation/Commands.Automation/Cmdlet/GetAzureAutomationDscOnboardingMetaconfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class GetAzureAutomationDscOnboardingMetaconfig : AzureAutomationBaseCmdl
5252
/// <summary>
5353
/// Gets or sets switch parameter to confirm overwriting of existing configurations.
5454
/// </summary>
55-
[Parameter(Mandatory = false, HelpMessage = "Forces the command to run without asking for user confirmation and overwrites an existing configuration with same name.")]
55+
[Parameter(Mandatory = false, HelpMessage = "Forces the command to run without asking for user confirmation and overwrites an existing metaconfiguration with same name.")]
5656
public SwitchParameter Force
5757
{
5858
get { return this.overwriteExistingFile; }

src/ResourceManager/Automation/Commands.Automation/Cmdlet/RegisterAzureAutomationDscNode.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public class RegisterAzureAutomationDscNode : AzureAutomationBaseCmdlet
7777
/// <summary>
7878
/// Gets or sets the node configuration name.
7979
/// </summary>
80-
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The node configuration name the VM should be configured to grab from Azure Automation DSC.")]
80+
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the node configuration that the VM should be configured to pull from Azure Automation DSC.")]
8181
public string NodeConfigurationName
8282
{
8383
get { return this.nodeConfigurationName; }
@@ -109,7 +109,7 @@ public int ConfigurationModeFrequencyMins
109109
/// <summary>
110110
/// Gets or sets the refresh frequency in minutes.
111111
/// </summary>
112-
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Represents the frequency (in minutes) at which the Local Configuration Manager contacts the pull server to download the current configuration.")]
112+
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Represents the frequency (in minutes) at which the Local Configuration Manager contacts the Azure Automation DSC pull server to download the latest node configuration.")]
113113
[ValidateRange(30, 44640)]
114114
public int RefreshFrequencyMins
115115
{
@@ -142,7 +142,7 @@ public string ActionAfterReboot
142142
/// Gets or sets a value indicating whether to overwrite the module.
143143
/// </summary>
144144
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true,
145-
HelpMessage = "Controls whether new configurations downloaded from the configuration server are allowed to overwrite the old ones on the target node.")]
145+
HelpMessage = "Controls whether new configurations downloaded from the Azure Automation DSC pull server are allowed to overwrite the old modules already on the target node.")]
146146
public bool AllowModuleOverwrite
147147
{
148148
get { return this.overwriteModulesFlag; }

src/ResourceManager/Automation/Commands.Automation/Cmdlet/SetAzureAutomationDscNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class SetAzureAutomationDscNode : AzureAutomationBaseCmdlet
4848
/// <summary>
4949
/// Gets or sets the nodeconfiguration name.
5050
/// </summary>
51-
[Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The node configuration name.")]
51+
[Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The node configuration name that the node should now be mapped to.")]
5252
[ValidateNotNullOrEmpty]
5353
public string NodeConfigurationName { get; set; }
5454

src/ResourceManager/Automation/Commands.Automation/Properties/Resources.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ResourceManager/Automation/Commands.Automation/Properties/Resources.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@
354354
<comment>Automation</comment>
355355
</data>
356356
<data name="DscMetaMofHasKeysDescription" xml:space="preserve">
357-
<value>Generating the files</value>
357+
<value>Generating the metaconfiguration</value>
358358
<comment>Automation</comment>
359359
</data>
360360
<data name="SetnodeconfigurationDescription" xml:space="preserve">

0 commit comments

Comments
 (0)