Signed-off-by: Jeroen Oudshoorn <oudshoorn.jeroen@gmail.com>
This commit is contained in:
Jeroen Oudshoorn
2023-10-31 19:06:16 +01:00
parent 3a70654e4c
commit e12c13f639

View File

@ -228,58 +228,6 @@
path: /usr/local/share/pwnagotchi/
state: directory
#- name: Install go-1.21
# unarchive:
# src: https://go.dev/dl/go1.21.3.linux-arm64.tar.gz
# dest: /usr/local
# remote_src: yes
# register: golang
#- name: Update .bashrc for go-1.21
# blockinfile:
# dest: /home/pi/.bashrc
# state: present
# block: |
# export GOPATH=$HOME/go
# export PATH=/usr/local/go/bin:$PATH:$GOPATH/bin
# when: golang.changed
#- name: download pwngrid 1.10.4
# git:
# repo: https://github.com/jayofelony/pwngrid.git
# dest: /usr/local/src/pwngrid
# register: pwngrid
#- name: install pwngrid 1.10.4
# shell: "export GOPATH=$HOME/go && export PATH=/usr/local/go/bin:$PATH:$GOPATH/bin && go mod tidy && make && make install"
# args:
# executable: /bin/bash
# chdir: /usr/local/src/pwngrid
# when: pwngrid.changed
#- name: remove pwngrid folder
# file:
# state: absent
# path: /usr/local/src/pwngrid
#- name: download bettercap v2.32.1
# git:
# repo: https://github.com/jayofelony/bettercap.git
# dest: /usr/local/src/bettercap
# register: bettercap
#- name: Install bettercap v2.32.1
# shell: "export GOPATH=$HOME/go && export PATH=/usr/local/go/bin:$PATH:$GOPATH/bin && go mod tidy && make && make install"
# args:
# executable: /bin/bash
# chdir: /usr/local/src/bettercap
# when: bettercap.changed
#- name: remove bettercap folder
# file:
# state: absent
# path: /usr/local/src/bettercap
- name: clone bettercap caplets
git:
repo: https://github.com/jayofelony/caplets.git
@ -334,12 +282,12 @@
path: /boot/ssh
state: touch
- name: adjust /boot/config.txt
lineinfile:
dest: /boot/config.txt
insertafter: EOF
line: '{{ item }}'
with_items: "{{system.boot_options}}"
#- name: adjust /boot/config.txt
# lineinfile:
# dest: /boot/config.txt
# insertafter: EOF
# line: '{{ item }}'
# with_items: "{{system.boot_options}}"
- name: adjust /etc/modules
lineinfile:
@ -435,16 +383,6 @@
args:
executable: /bin/bash
- name: remove /root/go folder
file:
state: absent
path: /root/go
- name: remove /usr/local/go folder
file:
state: absent
path: /usr/local/go
- name: remove pip cache
file:
state: absent