StackExchange / blackbox

Safely store secrets in Git/Mercurial/Subversion
MIT License
6.69k stars 370 forks source link

Release deb/rpm packages #165

Open benmccann opened 8 years ago

benmccann commented 8 years ago

It would really ease installation to have deb/rpm packages available. I'm struggling quite a bit to get fpm installed on RHEL6, but even for users without this difficulty it would be quite a nice convenience

framp commented 7 years ago

For whoever may struggle on this:

git clone git@github.com:StackExchange/blackbox.git
PATH=~/blackbox/bin:$PATH
#now you can use blackbox

but I agree, it would be nice to have a deb release

jeremy303 commented 7 years ago

+1 to keep this alive. It would be really great to have an RPM package available. I too have had issues getting 'fpm' installed on CentOS.

tlimoncelli commented 7 years ago

fpm is installed as a ruby "gem". So, you generally won't find a package for it.

In Puppet I use this:

  ensure_packages(['rubygems', 'ruby-devel'])
  package { 'fpm':
    ensure   => 'latest',
    provider => 'gem',
    require  => Package['ruby-devel', 'rubygems'],
  }
torkelrogstad commented 6 years ago

Would Packagecloud be an option? They have some free options for open source software.

tlimoncelli commented 6 years ago

I'm open to volunteers stepping up to take this on and deciding what to do.