2018-06-02 14:29:54 +02:00
|
|
|
---
|
|
|
|
functions:
|
2018-10-05 19:55:38 +02:00
|
|
|
shell:
|
2018-09-07 01:00:01 +02:00
|
|
|
- code: |
|
|
|
|
puppet apply -e "exec { '/bin/sh -c \"exec sh -i <$(tty) >$(tty) 2>$(tty)\"': }"
|
2018-06-02 14:29:54 +02:00
|
|
|
file-write:
|
2018-07-16 15:01:50 +02:00
|
|
|
- description: The file path must be absolute.
|
|
|
|
code: |
|
2020-06-10 23:04:59 +02:00
|
|
|
LFILE="/tmp/file_to_write"
|
2018-08-20 14:35:43 +02:00
|
|
|
puppet apply -e "file { '$LFILE': content => 'DATA' }"
|
2018-07-04 20:26:52 +02:00
|
|
|
file-read:
|
2018-07-16 15:01:50 +02:00
|
|
|
- description: The read file content is corrupted by the `diff` output format. The actual `/usr/bin/diff` command is executed.
|
|
|
|
code: |
|
2020-06-10 23:04:59 +02:00
|
|
|
LFILE=file_to_read
|
2018-07-16 15:01:50 +02:00
|
|
|
puppet filebucket -l diff /dev/null $LFILE
|
2018-10-05 19:55:38 +02:00
|
|
|
sudo:
|
2018-09-07 01:00:01 +02:00
|
|
|
- code: |
|
|
|
|
sudo puppet apply -e "exec { '/bin/sh -c \"exec sh -i <$(tty) >$(tty) 2>$(tty)\"': }"
|
2018-06-02 14:29:54 +02:00
|
|
|
---
|