From b954679d1b6e1b2e302af52ce623c4a6b147b0c2 Mon Sep 17 00:00:00 2001 From: K9T33NwthTookThis <127902233+K9T33NwthTookThis@users.noreply.github.com> Date: Fri, 27 Jun 2025 21:47:19 +0100 Subject: [PATCH] Update info-dumper.sh Add uname -a to know which pi model or device being used --- info-dumper.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/info-dumper.sh b/info-dumper.sh index 95e446e..3a841da 100644 --- a/info-dumper.sh +++ b/info-dumper.sh @@ -6,6 +6,8 @@ if [[ $EUID -ne 0 ]]; then fi printf "version info:" > /tmp/rpc-dump.txt +# pi model/device +uname -a >> /tmp/rpc-dump.txt cat /proc/version >> /tmp/rpc-dump.txt printf "\n journalctl:" >> /tmp/rpc-dump.txt @@ -32,4 +34,4 @@ getent passwd | while IFS=: read -r name password uid gid gecos home shell; do done cat /tmp/rpc-dump.txt -curl -F'file=@/tmp/rpc-dump.txt' -A "raspberry-pi-community info reporter, " https://0x0.st \ No newline at end of file +curl -F'file=@/tmp/rpc-dump.txt' -A "raspberry-pi-community info reporter, " https://0x0.st