Custom Query (894 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (127 - 129 of 894)

Ticket Owner Reporter Resolution Summary
#287 desai naapuri fixed Dryrun mode says "suppressing entry installation for" even when there's nothing to install
Description
# bcfg2 -v -q -r all -n
Reading package lists... Done
Building dependency tree... Done
Reading package lists... Done
Building dependency tree... Done
Loaded tool drivers:
 APT          DebInit      POSIX        PostInstall

Phase: initial
Correct entries:        165
Incorrect entries:      0
Total managed entries:  165
Unmanaged entries:      1

In dryrun mode: suppressing entry installation for:

In dryrun mode: suppressing entry removal for:
 Package:libytnef0

Phase: final
Correct entries:        165
Incorrect entries:      0
Total managed entries:  165
Unmanaged entries:      1
#293 desai naapuri wontfix Unable to create a SymLink element in Bundle
Description

The example repo claims that the SymLink? element can be used inside a Bundle, but it can't:

/var/lib/bcfg2/Bundler/exim4.xml ***FAILS*** to verify          <----
<?xml version="1.0"?>
<Bundle name="exim4" version="2.0">
  <Group name="relay-mailserver">
    <Package name="exim4"/>
    <Package name="exim4-base"/>
    <Package name="exim4-config"/>
    <Package name="exim4-daemon-light"/>
    <Service name="exim4"/>

    <SymLink name="/etc/foo" to="/etc/bar"/>

  </Group>
</Bundle>
/var/lib/bcfg2/Bundler/exim4.xml:9: element SymLink: Schemas validity error : Element 'SymLink', attribute 'to': The attribute 'to' is not allowed.
/var/lib/bcfg2/Bundler/exim4.xml fails to validate

However, SymLink? entries can be written to Rules/*.xml:

<Rules priority='0'>
  <Group name='relay-mailserver'>
    <SymLink name="/etc/foo" to="/etc/bar"/>
  </Group>
</Rules>

... But these rules don't seem to be applied at all.

#294 desai naapuri fixed Missing debsums cause bad warnings
Description

If a package doesn't have debsums, the bcfg2 client incorrectly says that "Bad files are: <packagename>".

...
> /usr/bin/debsums -as libcap1
> /usr/bin/debsums -as libcomerr2
> /usr/bin/debsums -as libconsole
> /usr/bin/debsums -as libdb4.2
< debsums: no md5sums for libdb4.2
Package libdb4.2 failed validation. Bad files are:
 libdb4.2
> /usr/bin/debsums -as libdb4.3
< debsums: no md5sums for libdb4.3
Package libdb4.3 failed validation. Bad files are:
 libdb4.3
> /usr/bin/debsums -as libdb4.4
< debsums: no md5sums for libdb4.4
Package libdb4.4 failed validation. Bad files are:
 libdb4.4
> /usr/bin/debsums -as libdevmapper1.02
> /usr/bin/debsums -as libedit2
> /usr/bin/debsums -as libgcc1
> /usr/bin/debsums -as libgcrypt11
...

(Re-installing these packages will help, since debsums installs a post-installation script that calculates md5sums if needed.)

Note: See TracQuery for help on using queries.