aboutsummaryrefslogtreecommitdiff
blob: 1bff768feeabb882b68e313ada287430d88c9b3b (plain)
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
34
35
36
37
38
39
40
41
42
43
# use emerge for synchronisation
SYNC_CMD="/usr/bin/emerge --sync"

# use eix-sync instead of emerge --sync
#SYNC_CMD="/usr/bin/eix-sync"

# do not synchronize (e.g. if PORTDIR is mounted read-only)
#SYNC_CMD="/bin/true"

# use layman for synchronizing overlays
#SYNC_OVERLAYS_CMD="/usr/bin/layman --sync-all"

# do not synchronize overlays
SYNC_OVERLAYS_CMD="/bin/true"

# include a report of changed ebuilds
#DIFF_CMD="/usr/bin/eix-diff"

# emerge upgrade options
UPGRADE_OPTS="--deep --update"

# sender of reports
FROM="root@$(hostname --fqdn)"

# recipient for reports, local mailbox
RCPT=root

# recipient for reports, e-mail address
#RCPT="root@$(hostname -f)"

# format of the e-mail subject
# use {FQDN}, {HOST}, {IP}, and {DATE} as variables
#SUBJECT="Gentoo package updates on {FQDN} [ {IP} ]"

# format of the e-mail subject in case of warnings
# use {FQDN}, {HOST}, {IP}, and {DATE} as variables
#SUBJECT_WARN="WARNING: Gentoo security updates on {FQDN} [ {IP} ]"

# path to sendmail binary
SENDMAIL=/usr/sbin/sendmail

# send each unique notification e-mail only once
CHECK_DUP_MSG=1