An Rpm Specfile Quesstion

Home » CentOS » An Rpm Specfile Quesstion
CentOS No Comments

I’ve built an rpm package to distribute an executable and datafiles, but I
need to link to the executable, with the symlink with a different name, into /usr/sbin/

If I make the symlink in the %post, it doesn’t show if you do rpm -ql, and
/usr/sbin/link gives “not owned by any package”. If I make /usr/bin during the %install, trying to install it gives me
/usr/sbin’s already owned by the filesystem package.

What’s the correct way to do this, so it shows with rpm -ql?

mark