Signed-off-by: Jeroen Oudshoorn <oudshoorn.jeroen@gmail.com>
This commit is contained in:
Jeroen Oudshoorn
2023-11-09 21:38:03 +01:00
parent b8b04d1de9
commit f75f8949f7
3 changed files with 13 additions and 1 deletions

View File

@ -28,6 +28,6 @@ echo " If you want to know if I'm running, you can use"
echo " sudo systemctl status pwnagotchi" echo " sudo systemctl status pwnagotchi"
echo echo
echo " You can restart me using" echo " You can restart me using"
echo " sudo systemctl restart pwnagotchi" echo " pwnkill"
echo echo
echo " You learn more about me at https://pwnagotchi.ai/" echo " You learn more about me at https://pwnagotchi.ai/"

View File

@ -385,6 +385,12 @@
line: "\nalias pwnver='python3 -c \"import pwnagotchi as p; print(p.__version__)\"'" line: "\nalias pwnver='python3 -c \"import pwnagotchi as p; print(p.__version__)\"'"
insertafter: EOF insertafter: EOF
- name: Add pwnkill alias to restart pwnagotchi with a signal
lineinfile:
dest: /home/pi/.bashrc
line: "\nalias pwnkill='sudo killall -USR1 pwnagotchi'"
insertafter: EOF
- name: download old libpcap packages - name: download old libpcap packages
get_url: get_url:
url: "https://old.kali.org/kali/pool/main/libp/libpcap/{{ item }}" url: "https://old.kali.org/kali/pool/main/libp/libpcap/{{ item }}"

View File

@ -492,6 +492,12 @@
line: "\nalias pwnver='python3 -c \"import pwnagotchi as p; print(p.__version__)\"'" line: "\nalias pwnver='python3 -c \"import pwnagotchi as p; print(p.__version__)\"'"
insertafter: EOF insertafter: EOF
- name: Add pwnkill alias to restart pwnagotchi with a signal
lineinfile:
dest: /home/pi/.bashrc
line: "\nalias pwnkill='sudo killall -USR1 pwnagotchi'"
insertafter: EOF
- name: download old libpcap packages - name: download old libpcap packages
get_url: get_url:
url: "https://old.kali.org/kali/pool/main/libp/libpcap/{{ item }}" url: "https://old.kali.org/kali/pool/main/libp/libpcap/{{ item }}"