#include <locale.h>
#include "stdio.h"
#include "signal.h"
#include "string.h"
#include "sys/types.h"
#include "errno.h"
#include "stdlib.h"
#include "lp.h"
#include "msgs.h"
#define WHO_AM_I I_AM_LPSHUT
#include "oam.h"
void startup(),
cleanup(),
done();
int
main(int argc, char *argv[])
{
char msgbuf[MSGMAX];
char * tempo;
int mtype;
short status;
(void) setlocale (LC_ALL, "");
#if !defined(TEXT_DOMAIN)
#define TEXT_DOMAIN "SYS_TEST"
#endif
(void) textdomain(TEXT_DOMAIN);
if (argc > 1)
if (STREQU(argv[1], "-?")) {
printf (gettext("usage: lpshut\n"));
exit (0);
} else {
LP_ERRMSG1 (ERROR, E_LP_OPTION, argv[1]);
exit (1);
}
startup ();
if ((tempo = getenv("LPSHUT")) && STREQU(tempo, "slow"))
(void)putmessage (msgbuf, S_SHUTDOWN, 0);
else
(void)putmessage (msgbuf, S_SHUTDOWN, 1);
if (msend(msgbuf) == -1) {
LP_ERRMSG (ERROR, E_LP_MSEND);
done (1);
}
if (mrecv(msgbuf, sizeof(msgbuf)) == -1) {
LP_ERRMSG (ERROR, E_LP_MRECV);
done (1);
}
mtype = getmessage(msgbuf, R_SHUTDOWN, &status);
if (mtype != R_SHUTDOWN) {
LP_ERRMSG1 (ERROR, E_LP_BADREPLY, mtype);
done (1);
}
switch (status) {
case MOK:
printf (gettext("Print services stopped.\n"));
done (0);
case MNOPERM:
LP_ERRMSG (WARNING, E_SHT_CANT);
done (1);
default:
LP_ERRMSG1 (ERROR, E_LP_BADSTATUS, status);
done (1);
}
return (0);
}
void startup ()
{
void catch();
if (mopen() == -1) {
switch (errno) {
case ENOMEM:
case ENOSPC:
LP_ERRMSG (ERROR, E_LP_MLATER);
exit (1);
default:
printf (gettext("Print services already stopped.\n"));
exit (1);
}
}
if(signal(SIGHUP, SIG_IGN) != SIG_IGN)
signal(SIGHUP, catch);
if(signal(SIGINT, SIG_IGN) != SIG_IGN)
signal(SIGINT, catch);
if(signal(SIGQUIT, SIG_IGN) != SIG_IGN)
signal(SIGQUIT, catch);
if(signal(SIGTERM, SIG_IGN) != SIG_IGN)
signal(SIGTERM, catch);
return;
}
void catch (sig)
int sig;
{
signal (sig, SIG_IGN);
done (1);
}
void cleanup ()
{
mclose ();
return;
}
void done (ec)
int ec;
{
cleanup ();
exit (ec);
}