APLawrence - Information and Resources for Unix and Linux Systems, Bloggers and the self-employed
RSS Feeds Get APLawrence.com by RSS











(OLDER) <- More Stuff -> (NEWER) (NEWEST)
Home > News Posts > what shutdown or rebooted the system?
Printer Friendly Version




News Group Posts

what shutdown or rebooted the

system?



From: Bela Lubkin <belal@sco.com>
Subject: Re: Uncommanded Reboot - something fishy?
Date: Mon, 2 Dec 2002 20:24:15 GMT
References: <2113452.1038837388@dbforums.com>
<asg92g$2qe$1@pcls4.std.com> Tony Lawrence wrote: > If you think some process is doing this (as opposed to a hardware > reboot) see "How do I find out who or what halted my system?" at > http://aplawrence.com/SCOFAQ/scotec1.html#haltcatch > > (appended here for your convenience) > > First, look in crontab for a call to haltsys or init. Someone may have > added this for silly reasons. > > If you think some privileged user or process has run /etc/haltsys, add > these lines to it right after the PATH= line > > { > echo $0 `tty` `id` > MYPROC=$$ > NEXTPROC=$MYPROC > while [ $NEXTPROC != 0 ] > do > ps -lp $NEXTPROC > MYPROC=$NEXTPROC > NEXTPROC=`ps -p $MYPROC -o "ppid=" ` > done > } | mail -s "haltsys was run" root












Change this to:

    } | mail -s "$0 $@ was run" root
    sync
    sleep 5
    sync

The sync and pause routine is necessary because mail delivery can take a
while (especially if you've installed spamassassin ;-), you don't want
to fire off mail when you know the very next thing you're doing is
shutting down.

> This will give you a full trace of where it was called from. You can use 
> a similar technique with /etc/shutdown.

This is true enough, but misses /etc/reboot as well as /etc/uadmin.

_All_ of the SCO-provided shutdown techniques (init [056], shutdown,
haltsys, reboot) eventually funnel through /etc/uadmin.  So the best way
to do this is to move /etc/uadmin to /etc/uadmin.real and use the above
script bit as /etc/uadmin, ending it with:



  exec /etc/uadmin.real "$@"

The `ps` chain is cute, but unnecessary -- better to give `ps -elf`
output and let the reader figure out the chaining.  The actual cause of
shutdown might not be in the parenthood of the process doing the
shutdown.  (e.g. if someone ran `sd shutdown`.)  So the entire script
can be reduced to:

  #!/bin/sh
  {
    echo Process $$, on tty `tty`, user `id`, ran:
    echo "  $0 $@"
    echo
    ps -elf
  } | mail -s "uadmin was run" root
  sync; sleep 5; sync
  exec /etc/uadmin.real "$@" # "real" /etc/uadmin was renamed /etc/uadmin.real

>Bela<
 

If this page was useful to you, please click to help others find it:  

Your +1's can help friends, contacts, and others on the web find the best stuff when they search.

Comments?



Click here to add your comments



Don't miss responses! Subscribe to Comments by RSS or by Email

Click here to add your comments


If you want a picture to show with your comment, go get a Gravatar



Have you tried Searching this site?

Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates

This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.

Publishing your articles here

Jump to Comments



Many of the products and books I review are things I purchased for my own use. Some were given to me specifically for the purpose of reviewing them. I resell or can earn commissions from the sale of some of these items. Links within these pages may be affiliate links that pay me for referring you to them. That's mostly insignificant amounts of money; whenever it is not I have made my relationship plain. I also may own stock in companies mentioned here. If you have any question, please do feel free to contact me.

Specific links that take you to pages that allow you to purchase the item I reviewed are very likely to pay me a commission. Many of the books I review were given to me by the publishers specifically for the purpose of writing a review. These gifts and referral fees do not affect my opinions; I often give bad reviews anyway.

We use Google third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, click here.

g_face.jpg

This post tagged:

       - Bela
       - SCO_OSR5




Unix/Linux Consultants

Skills Tests

Guest Post Here