Custom Query (894 matches)
Results (13 - 15 of 894)
Ticket | Owner | Reporter | Resolution | Summary |
---|---|---|---|---|
#824 | desai | Bruce Bush <[email protected]…> | wontfix | Add mechanism to check for the absence of a package |
Description |
The Package and BoundPackage? statements confirm and the status of an installed package. It would be useful to have a 'RemovePackage?' tag that would check to make sure a package is NOT present and remove it if it is present. 'bcfg2 -r all' lacks granularity. The 'RemovePackage?' statement would be helpful to users implementing bcfg2 who do not have all their software managed yet, but would like to have a mechanism to selectively remove software packages. |
|||
#856 | desai | Bruce Bush <[email protected]…> | fixed | mode=supervised service status changes not logged |
Description |
When a service is set to 'mode=supervised' and the client changes the status of that service, the status change is not mentioned in the web report. Example: Before running bcfg2 client, I stopped rsyslogd on my test machine. When the client is run in debug mode, the client makes the change:
< rsyslog 0:off 1:off 2:on 3:on 4:on 5:on 6:off
< rsyslogd is stopped < rklogd is stopped
< Starting system logger: [ OK ]M < Starting kernel logger: [ OK ]M
< rsyslogd (pid 20509) is running... < rklogd (pid 20513) is running... But the web report doesn't include any mention that the status was changed. Thanks for your attention to this matter. |
|||
#861 | solj | Bruce Bush <[email protected]…> | fixed | Python block in Genshi bundle causes traceback |
Description |
This example causes a traceback: <Bundle name='awstats' xmlns:py="http://genshi.edgewall.org/">
</Bundle> This example works: <Bundle name='awstats' xmlns:py="http://genshi.edgewall.org/"> <py:for each="vhost in metadata.Probes['vhosts'].split(':')" >
</py:for> </Bundle> |