File: changetrack.conf

package info (click to toggle)
changetrack 4.7-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 232 kB
  • ctags: 15
  • sloc: perl: 1,066; sh: 65; makefile: 48
file content (28 lines) | stat: -rw-r--r-- 864 bytes parent folder | download | duplicates (6)
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
# this is the configuration file for changetrack.
# you can use ls-compatible wildcards, 
# like /etc/h* or /opt/apache/cgi-bin/*.sh
# 
# If you omit the leading '/' then it assumes that they
# are relative to your home directory (~/), or / if you're root.

# To email changes to users, use a line like:
# /etc/passwd : root@localhost foo@bar.com
# Note: one email will be sent to each user, unless none of the files
# monitored by that user are modified.

# common system files
/etc/passwd
/etc/hosts
/etc/services
#/etc/resolv.conf
#/etc/inetd.conf
#/etc/nsswitch.conf

# If the filename starts with '@' we will assume the rest is a
# find2perl compatible search, such as:

# all the files ending in ".conf", recursively
@ /etc -name "*.conf"

# all world-readable text files under /etc (don't follow symlinks)
#@/etc -type f -type T -perm -444 : root@localhost