You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there's a single quote (dumb apostrophe) the admin playbook will fail to rename the HD/SSD
ValueError: No closing quotation
Solution should be something like this:
- name: Set name of HD to ComputerName + HD/SSD
shell:
diskutil rename / '{{ computer_name.stdout | replace("'", "\'" }} SSD'
...but escaping the backslashes is going to be clumsy.
The text was updated successfully, but these errors were encountered:
If there's a single quote (dumb apostrophe) the admin playbook will fail to rename the HD/SSD
Solution should be something like this:
The text was updated successfully, but these errors were encountered: