This website works better with JavaScript.
Home
Explore
Help
Sign In
overmind
/
matrix-docker-ansible-deploy
mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
convert shell to command usage
pull/2217/head
ikkemaniac
3 years ago
parent
2b049da963
commit
45c9c2b17a
1 changed files
with
8 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-7
roles/matrix-base/tasks/setup_matrix_base.yml
+ 8
- 7
roles/matrix-base/tasks/setup_matrix_base.yml
View File
@@ -26,13 +26,14 @@
delegate_to: 127.0.0.1
become: false
register: git_describe
ansible.builtin.shell:
git describe
--always
--tags
--dirty
--long
--all
ansible.builtin.command:
cmd: >-
git describe
--always
--tags
--dirty
--long
--all
- ansible.builtin.set_fact:
git_hash: "{{ git_describe.stdout }}"
Write
Preview
Loading…
Cancel
Save