mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-08 13:00:42 -07:00
9 lines
146 B
Bash
Executable file
9 lines
146 B
Bash
Executable file
#! /bin/sh
|
|
|
|
ip=$(echo $UDPREMOTEADDR | cut -d: -f1)
|
|
case "$ip" in
|
|
10.0.0.*)
|
|
touch /var/lib/pollster/$ip
|
|
;;
|
|
esac
|
|
echo 'Hello.'
|