Comment 4 for bug 1687477

Revision history for this message
James Page (james-page) wrote : Re: package rbd-mirror (not installed) failed to install/upgrade: a tentar sobre-escrever '/etc/init/ceph-rbd-mirror.conf', que também está no pacote ceph 10.2.6-0ubuntu0.16.04.1

Upstart install script needs to filter rbd-mirror files from ceph package:

    # Install upstart configurations using dh_installinit
    for conf in `ls -1 src/upstart/ceph*.conf | grep -v mds`; do \
        name=`basename $$conf | cut -d . -f 1`; \
        cp -v $$conf debian/ceph.$$name.upstart; \
        dh_installinit -pceph --no-start --name=$$name; \
    done

as it does for mds now.