Skip to content

Commit

Permalink
add ansible config
Browse files Browse the repository at this point in the history
  • Loading branch information
travisjeffery committed Jul 11, 2020
1 parent 420d1a2 commit be9b59f
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .install.yml
@@ -0,0 +1,37 @@
- hosts: localhost
tasks:
- name: install google-chrome
become: yes
package:
name: google-chrome
state: present
- name: install zsh
become: yes
package:
name: zsh
state: present
- name: install redshift
become: yes
package:
name: redshift
state: present
- name: install goenv
become: no
git:
repo: https://github.com/syndbg/goenv.git
version: master
dest: "{{ ansible_env.HOME }}/.goenv"
accept_hostkey: yes
# - name: install dotflies
# become: yes
# - name: install goenv
# become: yes
# package:
# name: goenv
# state: present

# - name: install emacs
# become: yes
# package:
# name: emacs
# state: present

0 comments on commit be9b59f

Please sign in to comment.