I built and installed a debian package from the following folder structure:

  • myprog
    • DEBIAN
      • control
    • usr
      • local
        • bin
          • myprog.sh

... using the following commands:

dpkg -b myprog/ myprog.deb && dpkg -i myprog.deb

When i now remove the package by typing:

dpkg -r myprog

.. I got the following warning:

dpkg: warning: while removing myprog, directory '/usr/local' not empty so not removed.

As I think this is an every day scenario, how can I avoid the warning?

Greets Thorsten!

# Edit

I tried to install the file to /bin instead of /usr/local/bin and got no warning when removing it. Seems so, that the /usr/local/.. folder will not treated as a system folder (?) by dpkg.

link|improve this question
feedback

1 Answer

That's right -- packages should never touch /usr/local directory, it's reserved for system administrators by Filesystem Hierarchy Standard and is their zone of responsibility.

link|improve this answer
Well, some packages create entries under /usr/local, to better organize what admins can add there (say, Python related, TeX, ca-certificates). In at least one case (ca-certificates), the README.Debian suggests, if we want locally-created packages to provide new trusted certificates (say, for internal CAs), to deploy the files under /usr/local/share/ca-certificates. Which is OK, in the end, as it is something LOCALLY created, but it creates problems if you decide to remove the package afterwards! – Ricardo Cárdenes Dec 28 '11 at 17:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.