Replace fake spaces by real ones.
This commit is contained in:
parent
34aee3e672
commit
a45a245556
1 changed files with 2 additions and 2 deletions
|
@ -28,13 +28,13 @@
|
||||||
|
|
||||||
- name: Make sure /usr/share/docker.io/contrib is in PATH variable
|
- name: Make sure /usr/share/docker.io/contrib is in PATH variable
|
||||||
lineinfile:
|
lineinfile:
|
||||||
path: "{{ ansible_env['HOME'] }}/.profile"
|
path: "{{ ansible_env['HOME'] }}/.profile"
|
||||||
regex: '^export PATH="/usr/share/docker\.io/contrib'
|
regex: '^export PATH="/usr/share/docker\.io/contrib'
|
||||||
line: 'export PATH="/usr/share/docker.io/contrib:$PATH"'
|
line: 'export PATH="/usr/share/docker.io/contrib:$PATH"'
|
||||||
|
|
||||||
- name: Make sure DOCKER_HOST variable is set correctly
|
- name: Make sure DOCKER_HOST variable is set correctly
|
||||||
lineinfile:
|
lineinfile:
|
||||||
path: "{{ ansible_env['HOME'] }}/.profile"
|
path: "{{ ansible_env['HOME'] }}/.profile"
|
||||||
regex: '^export DOCKER_HOST='
|
regex: '^export DOCKER_HOST='
|
||||||
line: "export DOCKER_HOST=unix:///run/user/{{ host_uid }}/docker.sock"
|
line: "export DOCKER_HOST=unix:///run/user/{{ host_uid }}/docker.sock"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue