Comment 31 for bug 1453463

Revision history for this message
Athos Ribeiro (athos-ribeiro) wrote :

I performed the verification for both bionic and focal.

I did so by running the following script in clean lxc containers for both series:

```
#!/bin/sh

set -ex

test_dep_regression() {
  apt purge -y libfam0 libgamin0 lighttpd
  apt install -y $1
  apt install -y lighttpd
  if ! /usr/sbin/lighttpd -v; then
    echo "Err: possible libfam-libgamin conflict regression"
    exit 1
  fi
}

apt update
test_dep_regression libfam0
test_dep_regression libgamin0
```

for each of the series, the script above worked as a reproducer for the original bug.

I then proceeded to enable the -proposed repository, and re-ran the script above (both in bionic and focal).

The script succeeded in both, printing the lighttpd version and returning a successful exit code.