We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e06e58a commit 87007c0Copy full SHA for 87007c0
src/azure-cli/azure/cli/command_modules/acs/_validators.py
@@ -828,9 +828,11 @@ def validate_disable_windows_outbound_nat(namespace):
828
raise ArgumentUsageError(
829
'--disable-windows-outbound-nat can only be set for Windows nodepools')
830
831
+
832
def validate_message_of_the_day(namespace):
833
"""Validates message of the day can only be used on Linux."""
834
if namespace.message_of_the_day is not None and namespace.message_of_the_day != "":
835
if namespace.os_type is not None and namespace.os_type != "Linux":
836
- '--message-of-the-day can only be set for linux nodepools')
837
+ '--message-of-the-day can only be set for linux nodepools')
838
0 commit comments