We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68da220 commit 51bd7beCopy full SHA for 51bd7be
playbook.yaml
@@ -119,6 +119,26 @@
119
roles:
120
- role: staticdev.firefox
121
122
+-
123
+ hosts: localhost
124
+ connection: local
125
+ gather_facts: yes
126
+ tags:
127
+ - install_utilities
128
+ - install_guix
129
+
130
+ tasks:
131
+ - name: Install guix with apt
132
+ apt:
133
+ name: guix
134
+ update_cache: yes
135
+ - name: Get disk usage
136
+ shell: df -h
137
+ register: disk_usage
138
+ - name: Display disk usage
139
+ debug:
140
+ msg: "{{ disk_usage.stdout }}"
141
142
-
143
# install keychain, git, and @capsulecorplab .vimrc and .gitconfig
144
hosts: localhost
0 commit comments