blob: fb9b9383bcde8893f63b750cf37d6c303e6c26d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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"
# include a report of changed ebuilds
#DIFF_CMD="/usr/bin/eix-sync -d"
# emerge upgrade options
UPGRADE_OPTS="--deep --update"
# recipient for reports
RCPT=root@$(hostname -f)
# path to sendmail binary
SENDMAIL=/usr/sbin/sendmail
|