Custom Query (894 matches)
Results (16 - 18 of 894)
Ticket
|
Owner
|
Reporter
|
Resolution
|
Summary
|
#457 |
desai
|
[email protected]…
|
fixed
|
traceback running showclient twice
|
Description |
If you run showclient twice in bcfg2-info (0.9.4) you get a traceback:
showclient spirulina.ci.uchicago.edu
Client | Profile | Groups | Bundles
==============================================================================================
spirulina.ci.uchicago.edu | rhel-workstation-smp | nvidia | latex
| | rhel-workstation | octave
| | smp | openoffice
| | rhel-ws-4-x86 | pine
| | workstation | synergy
| | devel | xwindows
| | nfs-base | imagemagick
| | xwindows | nfs
| | gnome | softenv
| | kde | ldap
| | imagemagick | kerberos
| | kerberized-base | autofs
| | nfs-client | cron
| | base | dbus
| | kerberos-client | emacs
| | ldap-client | kernel
| | bcfg2-client | logrotate
| | mail-client | logwatch
| | nagios-client | network-client
| | print-client | ntp
| | samba | pam
| | rhel | process-accounting
| | rhel-ws-4 | ssh
| | rh | ssl
| | rhel-4 | sudo
| | | syslog
| | | samba
| | | printing
| | | nagios
| | | snmp
| | | mail
| | | bcfg2
| | | devel
| | | version-control
showclient spirulina.ci.uchicago.edu
command failure
Traceback (most recent call last):
File "/usr/sbin/bcfg2-info", line 239, in ?
dispatch[ucmd[0]](ucmd, bcore)
File "/usr/sbin/bcfg2-info", line 151, in doShowclient
groups.remove(profile)
ValueError?: list.remove(x): x not in list
|
#494 |
desai
|
labrown
|
fixed
|
traceback in bcg2-info
|
Description |
Typo'd the host name.
buildfile /etc/bcfg2.conf monstar.idss.duke.edu
command failure
Traceback (most recent call last):
File "/usr/sbin/bcfg2-info", line 43, in do_loop
self.cmdloop()
File "/usr/lib/python2.3/cmd.py", line 133, in cmdloop
stop = self.onecmd(line)
File "/usr/lib/python2.3/cmd.py", line 210, in onecmd
return func(arg)
File "/usr/sbin/bcfg2-info", line 121, in do_buildfile
metadata = self.metadata.get_metadata(client)
File "/usr/lib/python2.3/site-packages/Bcfg2/Server/Plugins/Metadata.py", line 306, in get_metadata
self.set_profile(client, self.default)
TypeError?: set_profile() takes exactly 4 arguments (3 given)
|
#454 |
desai
|
[email protected]…
|
fixed
|
tools/bcfg2-cron script error
|
Description |
There's an extra closing curly-brace in the bcfg2-cron script invoked by the debian cron setup which prevents bcfg2 from running. One-liner patch follows:
--- bcfg2-0.9.4-orig/tools/bcfg2-cron 2006-09-05 07:57:21.000000000 -0700
+++ bcfg2-0.9.4/tools/bcfg2-cron 2007-06-29 12:04:36.000000000 -0700
@@ -31,7 +31,7 @@
# Invoke bcfg2 if enabled
if [ ${BCFG2_ENABLED} -eq 1 ]; then
eval BCFG2_EXTRA_OPTIONS=\${BCFG2_OPTIONS_${RUNTYPE}}
- ${BCFG2_BIN} ${BCFG2_OPTIONS} ${BCFG2_EXTRA_OPTIONS}}
+ ${BCFG2_BIN} ${BCFG2_OPTIONS} ${BCFG2_EXTRA_OPTIONS}
fi
}
|
Note: See
TracQuery
for help on using queries.