Skip to content

Commit

Permalink
Fix #34648 (#34828)
Browse files Browse the repository at this point in the history
  • Loading branch information
thatch45 authored and Nicole Thomas committed Jul 20, 2016
1 parent 98fa4a4 commit 6c35d88
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions doc/topics/troubleshooting/yaml_idiosyncrasies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,20 @@ versions will also be loaded as booleans (``true``, ``false``, ``yes``, ``no``,
Pillar data. Make sure that your Pillars which need to use the string versions
of these values are enclosed in quotes.

The '%' Sign
============

The `%` symbol has a special meaning in YAML, it needs to be passed as a
string literal:

.. code-block:: yaml
cheese:
ssh_auth.present:
- user: tbortels
- source: salt://ssh_keys/chease.pub
- config: '%h/.ssh/authorized_keys'
Integers are Parsed as Integers
===============================

Expand Down
2 changes: 1 addition & 1 deletion salt/states/ssh_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
ssh_auth.present:
- user: root
- source: salt://ssh_keys/thatch.id_rsa.pub
- config: %h/.ssh/authorized_keys
- config: '%h/.ssh/authorized_keys'
sshkeys:
ssh_auth.present:
Expand Down

0 comments on commit 6c35d88

Please sign in to comment.