This commit is contained in:
2022-03-30 21:30:42 +02:00
parent 752bbacf62
commit b027c0be18

View File

@@ -57,7 +57,7 @@
create: yes create: yes
validate: 'visudo -cf %s' validate: 'visudo -cf %s'
- name: Install trizen using makepkg if it isn't installed already - name: Install paru using makepkg if it isn't installed already
kewlfft.aur.aur: kewlfft.aur.aur:
name: paru name: paru
use: makepkg use: makepkg
@@ -66,40 +66,34 @@
become_method: su become_method: su
become_user: aur_builder become_user: aur_builder
# - name: Git checkout - name: Install packages from AUR
# ansible.builtin.git: community.general.pacman:
# repo: 'https://aur.archlinux.org/paru.git' name: oh-my-zsh-git,zsh-theme-powerlevel10k-git,zsh-autosuggestions,zsh-syntax-highlighting,openssh
# dest: /home/aur_builder/paru state: present
# become: aur_builder executable: paru
become: yes
become_user: aur_builder
# - name: Install packages from AUR - name: Clone dotfiles
# community.general.pacman: ansible.builtin.git:
# name: oh-my-zsh-git,zsh-theme-powerlevel10k-git,zsh-autosuggestions,zsh-syntax-highlighting,openssh repo: https://gitea.maiertobi.de/tobimai/dotfiles.git
# state: present dest: /tmp/dotfiles
# executable: paru
# become: yes
# become_user: aur_builder
# - name: Clone dotfiles - name: Copy zshrc to home dir
# ansible.builtin.git: ansible.builtin.copy:
# repo: https://gitea.maiertobi.de/tobimai/dotfiles.git src: //tmp/dotfiles/.zshrc
# dest: /tmp/dotfiles dest: /home/tobi/.zshrc
owner: tobi
group: tobi
mode: '0644'
# - name: Copy zshrc to home dir - name: Copy p10k to home dir
# ansible.builtin.copy: ansible.builtin.copy:
# src: //tmp/dotfiles/.zshrc src: //tmp/dotfiles/.p10k.zsh
# dest: /home/tobi/.zshrc dest: /home/tobi/.p10k.zsh
# owner: tobi owner: tobi
# group: tobi group: tobi
# mode: '0644' mode: '0644'
# - name: Copy p10k to home dir
# ansible.builtin.copy:
# src: //tmp/dotfiles/.p10k.zsh
# dest: /home/tobi/.p10k.zsh
# owner: tobi
# group: tobi
# mode: '0644'
# - name: Add ssh-rsa to ssh config as this seems to be disabled by default # - name: Add ssh-rsa to ssh config as this seems to be disabled by default
# blockinfile: # blockinfile: