Remove some useless instances of export

This commit is contained in:
Andrea Cardaci
2020-06-10 23:04:59 +02:00
parent 9aa7ec842e
commit 45308d4f58
6 changed files with 21 additions and 21 deletions

View File

@@ -6,12 +6,12 @@ functions:
file-write:
- description: The file path must be absolute.
code: |
export LFILE="/tmp/file_to_write"
LFILE="/tmp/file_to_write"
puppet apply -e "file { '$LFILE': content => 'DATA' }"
file-read:
- description: The read file content is corrupted by the `diff` output format. The actual `/usr/bin/diff` command is executed.
code: |
export LFILE=file_to_read
LFILE=file_to_read
puppet filebucket -l diff /dev/null $LFILE
sudo:
- code: |