Custom Query (894 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (118 - 120 of 894)

Ticket Owner Reporter Resolution Summary
#943 desai m4z <[email protected]…> wontfix bcfg2-reports: Sparse documentation
Description

bcfg2-reports is missing a manual page. Also, the output of bcfg2-reports -h is unclear:

  • What is meant by "current interaction"? The last run of the client?
  • What does expiring a host mean/do? Just "delete the client from the list"?
  • What is KIND, what is NAME? (seems KIND is not Package, ConfigFile etc.)
  • What are fields?
  • Examples please.

(I have not read the code (yet) and users should not need to.)

#1000 desai Joe Digilio <[email protected]…> wontfix Upstart services cannot be enabled/disabled
Description

Enabling/disabling an upstart service at boot time is currently not possible in Bcfg2. Upstart does not provide an easy way to do this. But there are two ways I know of to disable an upstart service:

  1. change the "start on" line in /etc/init/<service>.conf
  2. mv /etc/init/<service>.conf /etc/init/<service>.conf.disabled
  3. rm /etc/init/<service>.conf

It seems like the best way to do this would be method 2. Upstart.py would need to do something like this to disable a service:

  1. Tell the client to rename /etc/init/<service>.conf to a known name, eg /etc/init/<service>.conf.disabled-by-bcfg2
  2. Insert into the Bundle:
    <BoundPath name="/etc/init/<service>.conf" type="ignore"/>
    <BoundPath name="/etc/init/<service>.conf.disabled-by-bcfg2" type="ignore"/>
    

Maybe it would be better for the <service>.conf Path entry to be of type "nonexistent"? Of course we would need to ensure the rename occurs first.

Thoughts?

#1050 desai https://www.google.com/accounts/o8/id?id=AItOawkPb0RtPyicSdU7pLcv1UrX-yCh-YjkOwU wontfix `bcfg2-info showclient` makes changes to configuration
Description

Seems like bcfg2-info commands are not safe for repository configuration.

$ sudo bcfg2-info showclient selenium
Loading experimental plugin(s): Packages
NOTE: Interfaces subject to change
Handled 20 events in 0.132s
Handled 3 events in 0.002s
Asserting client selenium profile to basic
Creating new client: selenium, profile basic
Hostname:	selenium
Profile:	basic
Groups:		debian
		basic
Bundles:	motd
Connector data
================================================================================
Packages:	{'sources': []}
================================================================================
$ sudo bcfg2-info showclient selenium
Loading experimental plugin(s): Packages
NOTE: Interfaces subject to change
Failed to find IP address for selenium
Handled 20 events in 0.298s
Handled 3 events in 0.005s
Hostname:	selenium
Profile:	basic
Groups:		debian
		basic
Bundles:	motd
Connector data
================================================================================
Packages:	{'sources': []}
================================================================================
Note: See TracQuery for help on using queries.