File: bsign_check

package info (click to toggle)
bsign 0.4.4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 420 kB
  • ctags: 647
  • sloc: cpp: 3,019; ansic: 344; makefile: 294; sh: 219
file content (33 lines) | stat: -rw-r--r-- 758 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh
# $Id: bsign_check,v 1.1 2002/01/27 20:49:04 elf Exp $
#
# Verify hashes.  Send results by email.
#

# --- Start of customization macros

# LOCATIONS gives the path includes and excludes that guide where
#   bsign looks for input files.  

LOCATIONS=-i / -e /boot  -e /cdrom -e /dev -e /proc -e $BASE_PATH

# MAIL_TO is the list of email addresses that will receive email when
#   this script terminates.  The mail will contain the output of
#   bsign. 

MAIL_TO=root

# MAIL_PROG is the program to call to send mail 

MAIL_PROG=mailx

# --- End of customization macros

# Prevent library loading tricks
LD_LIBRARY_PATH=
export LD_LIBRARY_PATH

# Perform

$BASE_PATH/bsign -c -I -G $LOCATIONS \
  | $MAIL_PROG -s "`hostname -f` bsign log" $MAIL_TO