diff options
author | Marius Mauch <genone@gentoo.org> | 2006-03-26 06:35:24 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2006-03-26 06:35:24 +0000 |
commit | 2e8c935fb78beff2f4ebbb16876866be765194ac (patch) | |
tree | 2bdd68cdd59264632ad9d1fc62b82bcac5029144 /cnf/make.conf | |
parent | Clean up code for creation of CCACHEDIR, CONFCACHEDIR, and DISTCC_DIR. Preve... (diff) | |
download | portage-idfetch-2e8c935fb78beff2f4ebbb16876866be765194ac.tar.gz portage-idfetch-2e8c935fb78beff2f4ebbb16876866be765194ac.tar.bz2 portage-idfetch-2e8c935fb78beff2f4ebbb16876866be765194ac.zip |
move some elog defaults into make.globals, add new vars for mail from and subject (bug #116637), change default location for mod_save logfiles to PORT_LOGDIR/elog (bug #124165)
svn path=/main/trunk/; revision=3014
Diffstat (limited to 'cnf/make.conf')
-rw-r--r-- | cnf/make.conf | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/cnf/make.conf b/cnf/make.conf index d993464c..472d49bb 100644 --- a/cnf/make.conf +++ b/cnf/make.conf @@ -305,7 +305,8 @@ PORTAGE_ELOG_CLASSES="warn error log" # PORTAGE_ELOG_SYSTEM: selects the module(s) to process the log messages. Modules # included in portage are (empty means logging is disabled): -# save (saves one log per package in $PORTAGE_TMPDIR/elogs) +# save (saves one log per package in $PORT_LOGDIR/elog, +# /var/log/portage/elog if $PORT_LOGDIR is unset) # custom (passes all messages to $PORTAGE_LOG_COMMAND) # syslog (sends all messages to syslog) # mail (send all messages to the mailserver defined @@ -337,3 +338,14 @@ PORTAGE_ELOG_CLASSES="warn error log" #PORTAGE_ELOG_MAILURI="root@localhost localhost" (this is also the default setting) #PORTAGE_ELOG_MAILURI="user@some.domain mail.some.domain" (sends mails to user@some.domain using the mailserver mail.some.domain) #PORTAGE_ELOG_MAILURI="user@some.domain user:secret@mail.some.domain:100465" (this is left uncommented as a reader excercise ;) + +# PORTAGE_ELOG_MAILFROM: you can set the from-address of logmails with this variable, +# if unset mails are sent by "portage" (this default may fail +# in some environments). +#PORTAGE_ELOG_MAILFROM="portage@some.domain" + +# PORTAGE_ELOG_MAILSUBJECT: template string to be used as subject for logmails. The following +# variables are exanded: +# ${PACKAGE} - see description of PORTAGE_ELOG_COMMAND +# ${HOST} - FQDN of the host portage is running on +#PORTAGE_ELOG_MAILSUBJECT="package ${PACKAGE} merged on ${HOST} with notice" |