Custom Query (894 matches)
Results (40 - 42 of 894)
Ticket | Owner | Reporter | Resolution | Summary |
---|---|---|---|---|
#613 | desai | Fernando Laudares Camargos <[email protected]…> | fixed | Migrating from 0.9.5.7 to 0.9.6rc1 broke TCheetah template |
Description |
Once I did the upgrade I've got this messages while starting the bcfg2-server: ... Nov 14 04:08:01 bcfg2 bcfg2-server[24420]: Override encoding of template to ascii Nov 14 04:08:01 bcfg2 bcfg2-server[24420]: NotFound?: cannot find 'properties' while searching for 'self.properties' Nov 14 04:08:01 bcfg2 bcfg2-server[24420]: TCheetah template error for /etc/apt/sources.list Nov 14 04:08:01 bcfg2 bcfg2-server[24420]: Failed to bind entry: ConfigFile? /etc/apt/sources.list ... The following "patch" fixed up this issue: --- /tmp/TCheetah.py 2008-11-14 05:03:48.000000000 -0600 +++ /usr/share/pyshared/Bcfg2/Server/Plugins/TCheetah.py 2008-11-14 04:42:26.000000000 -0600 @@ -26,7 +26,7 @@
- + self.template.properties = self.properties.properties
Although I don't know if it may be applicable to new installations, what has lead me to it was ticket #559. Regards, Fernando |
|||
#619 | desai | Fernando Laudares Camargos <[email protected]…> | fixed | Bcfg2 ignores ConfigFile ending with ".tmp" |
Description |
In my case, I had the ConfigFile? /var/lib/bpcconf/rsyncd.conf.tmp. Everything seemed OK in the server but I've got the message "Failed to bind entry: ConfigFile? /var/lib/bpcconf/rsyncd.conf.tmp" although I didn't known why. In the client, I had : Incomplete information for entry ConfigFile:/var/lib/bpcconf/rsyncd.conf.tmp; cannot install
although the problem wasn't linked to an :info file, as one would believe. Finally, in debbug mode I've got : ConfigFile? /var/lib/bpcconf/rsyncd.conf.tmpl does not exist Failed to read /var/lib/bpcconf/rsyncd.conf.tmpl: No such file or directory So I've changed /var/lib/bpcconf/rsyncd.conf.tmp to /var/lib/bpcconf/rsyncd.conf.tmpl (for template) and it worked. |
|||
#761 | desai | Guilhem Lettron <[email protected]…> | fixed | [patch] sys.version |
Description |
I have patch proxy.py to limit sys.version to minor and major versions. If the version is (2,6,4rc1) has is it on Ubuntu karmic, it doesn't work. For information, the error is : Traceback (most recent call last):
ValueError?: invalid literal for int() with base 10: '4rc1' Patch Index: src/lib/Proxy.py =================================================================== --- src/lib/Proxy.py (révision 5480) +++ src/lib/Proxy.py (copie de travail) @@ -34,7 +34,7 @@
-version = string.split(string.split(sys.version)[0], ".") +version = sys.version_info[:2]
|