1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00
freebsd-ports/net/hawk/files/create_hawk_user.sql
Doug Barton 94c52d8c7f New port of a nifty utilty that uses perl to ping the networks you
specify, mysql to save the data, and php to display it. Fairly
configurable, and easy to set up.
2003-02-13 11:20:38 +00:00

9 lines
199 B
SQL

# Feed this file to mysql, e.g.,
# mysql -v < create_hawk_user.sql
grant select,insert,update,delete
on hawk.*
to hawk@localhost
identified by 'YOUR_PASSWORD_HERE';
flush privileges;