custombuild history

Duboux

Verified User
Joined
Apr 20, 2007
Messages
264
Hi,

Is there a way to fetch the history of which app was updated when ?


With kind regards
 
Currently, there are no CustomBuild logs, but we will consider adding that to the CustomBuild script.
 
Is there a way to fetch the history of which app was updated when ?

You might want to read applications' logs or egrep them for "start|stop|restart". Most of them put in logs their versions, so you can compare their versions in logs.


e.g.

Code:
[root@vps1 httpd]# egrep "start|stop|restart|notice" /var/log/httpd/error_log
[Fri Jun 10 00:42:51 2011] [notice] Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 DAV/2 configured -- resuming normal operations
[Fri Jun 10 01:16:01 2011] [notice] caught SIGTERM, shutting down
[Fri Jun 10 01:16:02 2011] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Fri Jun 10 01:16:03 2011] [notice] Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 DAV/2 configured -- resuming normal operations
[Fri Jun 10 06:21:08 2011] [notice] SIGHUP received.  Attempting to restart
[Fri Jun 10 06:21:23 2011] [notice] Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 DAV/2 configured -- resuming normal operations
[Fri Jun 10 12:21:03 2011] [notice] SIGHUP received.  Attempting to restart
[Fri Jun 10 12:21:09 2011] [notice] Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 DAV/2 configured -- resuming normal operations
[Fri Jun 10 15:36:58 2011] [notice] caught SIGTERM, shutting down
[Fri Jun 10 15:37:00 2011] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Fri Jun 10 15:37:01 2011] [notice] Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 DAV/2 configured -- resuming normal operations
 
Last edited:
custombuild.log is now available :) IP logging and more details will be available in the future. Thank you for the request.
 
Back
Top