I want to make a script that will prevent requests to certain domains for a certain amount of time, and kill specific processes during the same amount of time.
I would like to have something like a daemon, to which I could send commands.
For example, to see how much time is left, with some_script timeleft
,
to start the daemon which would be created by something like some_script start
,
or to add a new domain/process, etc.
What I'm stuck on is :
How to create a daemon? I have seen this
I don't know how to send a command to a daemon from a command line
I hope I have been clear enough in my explanation.
I would probably use the bones of the answer you refer to, but add:
a handler for
SIGHUP
which re-reads the config file of IPs to suppress, and,a handler for
SIGUSR1
which reports how much time there is remaining.So, it would look like this roughly:
You would then send the HUP signal or USR1 signal with:
or
and look in
/tmp/status.txt
for the output from the daemon. The above commands assume you stored the Perl script asdaemon.pl
- adjust if you used a different name.Or you could have the daemon write its own
pid
in a file on startup and use the-F
option topkill
.