Fix scripts

This commit is contained in:
pgrondek 2020-07-01 16:42:35 +02:00
parent 2197f0c5fa
commit f3127405af
6 changed files with 13 additions and 12 deletions

View File

@ -9,4 +9,4 @@ fi
apt update
apt install software-properties-common
apt-add-repository --yes --update ppa:ansible/ansible
apt install ansible
apt install -y git ansible

View File

@ -15,5 +15,5 @@
- name: add current user to docker group
user:
name: {{ ansible_user_id }}
name: "{{ ansible_user_id }}"
groups: docker

View File

@ -17,7 +17,7 @@
cmd: |
mkdir -p ~/src
cd ~/src
git clone {{ dwm-repo }}
git clone {{ dwm.repo }}
- name: build dwm
make:

View File

@ -1,8 +1,7 @@
---
- block:
- name: install screen locker
become: yes
- name: install screen locker
apt:
update_cache: yes
pkg:
- i3lock
apt:
update_cache: yes
pkg:
- i3lock

View File

@ -12,7 +12,7 @@
cmd: |
mkdir -p ~/src
cd ~/src
git clone {{ st-repo }}
git clone {{ st.repo }}
- name: build st
make:

View File

@ -1,3 +1,5 @@
---
dwm-repo: https://github.com/pgrondek/dwm.git
st-repo: https://github.com/pgrondek/stterm.git
dwm:
repo: https://github.com/pgrondek/dwm.git
st:
repo: https://github.com/pgrondek/stterm.git