Compare commits

..

No commits in common. "58c1fb442e0286d1bdd9f1d5328b0c75ee001ca8" and "e28bf336f500d93f687c99ac77f8cb7d60fd3e53" have entirely different histories.

4 changed files with 3 additions and 11 deletions

View File

@ -1,12 +1,5 @@
--- ---
- name: create ~/.local/bin
file:
state: directory
path: "{{ ansible_env.HOME }}/.local/bin"
mode: "0750"
- name: install chezmoi - name: install chezmoi
shell: sh -c "$(curl -fsLS git.io/chezmoi)" && mv ~/bin/chezmoi ~/.local/bin/ shell: mkdir -p ~/.local/bin && sh -c "$(curl -fsLS git.io/chezmoi)" && mv ~/bin/chezmoi ~/.local/bin/
args: args:
chdir: "{{ ansible_env.HOME }}"
creates: "{{ ansible_env.HOME }}/.local/bin/chezmoi" creates: "{{ ansible_env.HOME }}/.local/bin/chezmoi"

View File

@ -80,7 +80,7 @@
- name: install stern-HEAD freebsd - name: install stern-HEAD freebsd
when: ansible_facts['system']|lower == 'freebsd' when: ansible_facts['system']|lower == 'freebsd'
shell: go get -u github.com/stern/stern shell: go get github.com/wercker/stern && go build github.com/wercker/stern && go install github.com/wercker/stern
args: args:
creates: "{{ ansible_env.HOME }}/go/bin/stern" creates: "{{ ansible_env.HOME }}/go/bin/stern"

View File

@ -14,6 +14,5 @@
- name: Add Layan-dark theme - name: Add Layan-dark theme
shell: mkdir -p .themes && cd .themes && curl -Lo layan.tar.xz {{ layan_dark_url }} && tar xvJf layan.tar.xz && rm -f layan.tar.xz shell: mkdir -p .themes && cd .themes && curl -Lo layan.tar.xz {{ layan_dark_url }} && tar xvJf layan.tar.xz && rm -f layan.tar.xz
args: args:
chdir: "{{ ansible_env.HOME }}"
warn: False warn: False
creates: "{{ ansible_env.HOME }}/.themes/Layan-dark" creates: "{{ ansible_env.HOME }}/.themes/Layan-dark"

View File

@ -4,7 +4,7 @@
become_user: root become_user: root
become_method: sudo become_method: sudo
community.general.pkgng: community.general.pkgng:
name: libtool,autogen,libuv,gettext,autoconf,automake,gmake,coreutils,bash,tmux,git,most,node,npm,cmake,llvm10,jq name: libtool,autogen,libuv,gettext,autoconf,automake,gmake,coreutils,bash,tmux,git,most,node,npm,cmake,llvm10
state: present state: present
- name: install desktop pkg applications - name: install desktop pkg applications