corrected the readme
This commit is contained in:
parent
69a76251a3
commit
3848f48cda
@ -2,4 +2,4 @@
|
||||
an automated script to setup my workstation with ansible
|
||||
no need to download just run the script
|
||||
|
||||
sh -c "$(wget https://git.jatus.tech/Jatus/workstation-setup/raw/branch/main/setup.sh -O -)"
|
||||
```sh -c "$(wget https://git.jatus.tech/Jatus/workstation-setup/raw/branch/main/setup.sh -O -)"```
|
||||
|
24
local.yml
24
local.yml
@ -15,6 +15,11 @@
|
||||
- username: gianm
|
||||
|
||||
tasks:
|
||||
- name: Set zsh main as shell
|
||||
become: true
|
||||
when: ansible_facts['os_family'] == "Debian"
|
||||
shell: apt update
|
||||
|
||||
- name: Basic dev install
|
||||
become: true
|
||||
package:
|
||||
@ -36,9 +41,16 @@
|
||||
when: not zsh_dir.stat.exists
|
||||
shell: sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
|
||||
|
||||
# - name: Setup shell env
|
||||
# copy:
|
||||
# src: files/zshrc
|
||||
# dest: /home/gianm/.zshrc
|
||||
# owner: gianm
|
||||
# group: gianm
|
||||
- name: Setup shell env
|
||||
copy:
|
||||
src: files/zshrc
|
||||
dest: /home/gianm/.zshrc
|
||||
owner: gianm
|
||||
group: gianm
|
||||
|
||||
- name: Setup shell env
|
||||
copy:
|
||||
src: files/profile
|
||||
dest: /home/gianm/.profile
|
||||
owner: gianm
|
||||
group: gianm
|
||||
|
Loading…
Reference in New Issue
Block a user