Add puppet description

This commit is contained in:
Emilio Pinna 2018-06-02 15:55:12 +01:00
parent ce47cfd209
commit 234cfc0ebb

View File

@ -1,19 +1,23 @@
--- ---
functions: functions:
execute-non-interactive: execute-non-interactive:
- code: | - description: The executed command output is not shown and can be redirected to a file.
code: |
export CMD="/usr/bin/id" export CMD="/usr/bin/id"
puppet apply -e "exec { '${CMD}': }" puppet apply -e "exec { '${CMD}': }"
sudo-enabled: sudo-enabled:
- code: | - description: The executed command output is not shown and can be redirected to a file.
code: |
export CMD="/usr/bin/id" export CMD="/usr/bin/id"
sudo puppet apply -e "exec { '${CMD}': }" sudo puppet apply -e "exec { '${CMD}': }"
file-read: file-read:
- code: | - description: The read file content is corrupted by the `diff` output format.
code: |
export LFILE=file_to_read export LFILE=file_to_read
puppet filebucket -l diff /dev/null ${LFILE} puppet filebucket -l diff /dev/null ${LFILE}
file-write: file-write:
- code: | - description: The file path must be absolute.
code: |
export LFILE="/tmp/file_to_write" export LFILE="/tmp/file_to_write"
puppet apply -e "file { '${LFILE}': content => 'data' }" puppet apply -e "file { '${LFILE}': content => 'data' }"
--- ---