Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
emerge mitteilungen
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
bloodbrain
n00b
n00b


Joined: 15 Jun 2005
Posts: 2

PostPosted: Wed Jun 15, 2005 12:21 pm    Post subject: emerge mitteilungen Reply with quote

Hi

Während eines Updates kommt es häufig zu Mitteilungen eines ebuilds, welche mit grünen Sternchen gekennzeichnet sind. Werde diese MT eigentlich global gesammelt, so dass man sich diese auch nach einem Update von 20Programmen noch mal anschauen kann.


Gruß
Thomas
Back to top
View user's profile Send private message
mondauge
l33t
l33t


Joined: 08 Jan 2003
Posts: 603
Location: Schwetzingen, Germany

PostPosted: Wed Jun 15, 2005 12:47 pm    Post subject: Reply with quote

Diese Meldungen stehen im jeweiligen Ebuild zum Paket, das du grad installiert hast. Dort kannst du die Meldungen nochmals nachlesen, allerdings ohne Sternchen ;)

grüße,
mondauge
Back to top
View user's profile Send private message
bloodbrain
n00b
n00b


Joined: 15 Jun 2005
Posts: 2

PostPosted: Wed Jun 15, 2005 1:04 pm    Post subject: Reply with quote

narf, danke für diese einfache antwort ;)

Thomas
Back to top
View user's profile Send private message
psyqil
Advocate
Advocate


Joined: 26 May 2003
Posts: 2767

PostPosted: Wed Jun 15, 2005 1:06 pm    Post subject: Reply with quote

enotice
Back to top
View user's profile Send private message
Fauli
l33t
l33t


Joined: 24 Apr 2004
Posts: 760
Location: Moers, Germany

PostPosted: Wed Jun 15, 2005 6:14 pm    Post subject: Reply with quote

Oder portlog-info.
_________________
Do your part to beautify the web! Turn off link underlining!
Back to top
View user's profile Send private message
Genone
Retired Dev
Retired Dev


Joined: 14 Mar 2003
Posts: 9522
Location: beyond the rim

PostPosted: Thu Jun 16, 2005 9:37 am    Post subject: Reply with quote

https://forums.gentoo.org/viewtopic-t-131795.html
Back to top
View user's profile Send private message
equinox0r
l33t
l33t


Joined: 18 Feb 2004
Posts: 614

PostPosted: Thu Jun 16, 2005 10:04 am    Post subject: Reply with quote

Fauli wrote:
Oder portlog-info.

hmm.. was genau macht portlog-info eigentlich?
_________________
AMD 2400+ XP | 1024 MB RAM | ATI Radeon 9600Pro
Gentoo Base System version 1.4.16 | Portage 2.0.51.19 | 2.6.11-gentoo-r9 Kernel
Back to top
View user's profile Send private message
Fauli
l33t
l33t


Joined: 24 Apr 2004
Posts: 760
Location: Moers, Germany

PostPosted: Thu Jun 16, 2005 5:00 pm    Post subject: Reply with quote

equinox0r wrote:
hmm.. was genau macht portlog-info eigentlich?

portlog-info durchsucht die Dateien in deinem PORT_LOGDIR (/var/log/portage) und gibt alle interessanten Zeilen aus (z. B. die Zeilen, die mit einem * anfangen).
_________________
Do your part to beautify the web! Turn off link underlining!
Back to top
View user's profile Send private message
schmutzfinger
Veteran
Veteran


Joined: 26 Oct 2003
Posts: 1287
Location: Dresden/Germany

PostPosted: Thu Jun 16, 2005 7:27 pm    Post subject: Reply with quote

habe mich nach dem neuen baselayout auch erstmal wieder geärgert....
nach einer Suche hier im Forum bin ich aber darauf gestossen, das zukünftige Versionen von portage das wohl über den lokalen MTA mailen können.
IMHO ist da längst überfällig. Aber bei dem Standart MTA (ssmtp) würde es eh nix bringen, weil ich von noch niemandem gehört habe bei dem das Teil einwandfrei funktionierte. Aber jetzt wo ich exim habe will ich bitte auch mails von meinem portage bekommen ;).

https://forums.gentoo.org/viewtopic-t-311839-highlight-einfo+mail.html
Back to top
View user's profile Send private message
Yonathan
l33t
l33t


Joined: 05 Jan 2005
Posts: 662

PostPosted: Thu Jun 16, 2005 7:53 pm    Post subject: Reply with quote

der link ist ja wunderschön, aber wo genau finde ich das file dazu, um es zu editeren und anzupassen. ich hätte nämlich auch gerne die ganzen meldungen bekommen. und wenn das schon ddrin ist, dann braucht man ja keine extra programme. frage ist nur, wie komme ich an das, was ich haben will?

Code:
# logging related variables:
# PORTAGE_LOG_CLASSES: selects messages to be logged, possible values are:
#                          info, warn, error, log
PORTAGE_LOG_CLASSES="warn error log"

# PORTAGE_LOG_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)
#                          custom (passes all messages to $PORTAGE_LOG_COMMAND)
#                          syslog (sends all messages to syslog)
#                          mail (send all messages to the mailserver defined
#                                in $PORTAGE_LOG_MAILURI)
#PORTAGE_LOG_SYSTEM="save mail"

# PORTAGE_LOG_COMMAND: only used with the "custom" logging module. Specifies a command
#                      to process log messages. Two variables are expanded:
#                          ${PACKAGE} - expands to the cpv entry of the processed
#                                       package (see $PVR in ebuild(5))
#                          ${LOGFILE} - absolute path to the logfile
#PORTAGE_LOG_COMMAND="/path/to/logprocessor -p ${PACKAGE} -f ${LOGFILE}"

# PORTAGE_LOG_MAILURI: this variable holds all important settings for the mail
#                      module. In most cases listing the recipient adress and
#                      the receiving mailserver should be sufficient, but you can
#                      also use advanced settings like authentication or TLS. The
#                      full syntax is:
#                          adress [[user:passwd@]mailserver[:port]]
#                      where
#                          adress:     recipient adress
#                          user:       username for smtp auth (defaults to none)
#                          passwd:     password for smtp auth (defaults to none)
#                          mailserver: smtp server that should be used to deliver the mail (defaults to localhost)
#                          port:       port to use on the given smtp server (defaults to 25, values > 100000 indicate that starttls should be used on (port-100000))
#                      Examples:
#PORTAGE_LOG_MAILURI="root@localhost localhost" (this is also the default setting)
#PORTAGE_LOG_MAILURI="user@some.domain mail.some.domain" (sends mails to user@some.domain using the mailserver mail.some.domain)
#PORTAGE_LOG_MAILURI="user@some.domain user:secret@mail.some.domain:100465" (this is left uncommented as a reader excercise ;)


yona
_________________
Athlon XP+ 2400 Thunderbird,
Abit NF7
1536MB DDR (266),
Radeon 9200 (256mb)
gentoo 2.6.19-r5
Back to top
View user's profile Send private message
schmutzfinger
Veteran
Veteran


Joined: 26 Oct 2003
Posts: 1287
Location: Dresden/Germany

PostPosted: Thu Jun 16, 2005 8:09 pm    Post subject: Reply with quote

hast du portage 2.1?
Back to top
View user's profile Send private message
Yonathan
l33t
l33t


Joined: 05 Jan 2005
Posts: 662

PostPosted: Thu Jun 16, 2005 8:25 pm    Post subject: Reply with quote

nein. sehe grade, dass ich 2.0.51.19 habe :(

wo bekomme ich 2.1 her?

lg yona
_________________
Athlon XP+ 2400 Thunderbird,
Abit NF7
1536MB DDR (266),
Radeon 9200 (256mb)
gentoo 2.6.19-r5
Back to top
View user's profile Send private message
freigeist
Guru
Guru


Joined: 26 Jan 2004
Posts: 338
Location: Cologne, Germany

PostPosted: Sat Jan 28, 2006 11:25 pm    Post subject: Reply with quote

Gerade getestet, funktioniert ja tatsächlich einwandfrei:

/etc/make.conf
Code:

PORTAGE_ELOG_CLASSES="info warn error log"
PORTAGE_ELOG_SYSTEM="save syslog mail"
PORTAGE_ELOG_MAILURI="root@localhost localhost"


Danach gibt es pro paket das emerged wird eine Email, eine Datei in /var/tmp/elogs und einen Eintrag im syslog. Reicht einem eine Option davon, dann kann man natürlich ELOG_SYSTEM entsprechend anpassen.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum