Compare commits
No commits in common. "58c1fb442e0286d1bdd9f1d5328b0c75ee001ca8" and "e28bf336f500d93f687c99ac77f8cb7d60fd3e53" have entirely different histories.
58c1fb442e
...
e28bf336f5
|
@ -1,12 +1,5 @@
|
|||
---
|
||||
- name: create ~/.local/bin
|
||||
file:
|
||||
state: directory
|
||||
path: "{{ ansible_env.HOME }}/.local/bin"
|
||||
mode: "0750"
|
||||
|
||||
- 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:
|
||||
chdir: "{{ ansible_env.HOME }}"
|
||||
creates: "{{ ansible_env.HOME }}/.local/bin/chezmoi"
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
|
||||
- name: install stern-HEAD 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:
|
||||
creates: "{{ ansible_env.HOME }}/go/bin/stern"
|
||||
|
||||
|
|
|
@ -14,6 +14,5 @@
|
|||
- 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
|
||||
args:
|
||||
chdir: "{{ ansible_env.HOME }}"
|
||||
warn: False
|
||||
creates: "{{ ansible_env.HOME }}/.themes/Layan-dark"
|
||||
|
|
2
pkg.yml
2
pkg.yml
|
@ -4,7 +4,7 @@
|
|||
become_user: root
|
||||
become_method: sudo
|
||||
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
|
||||
|
||||
- name: install desktop pkg applications
|
||||
|
|
Reference in New Issue