diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-05-29 18:30:01 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-05-29 18:30:01 -0300 |
commit | 9c0a1fa5351f327cb968b27e93f0f410c4130867 (patch) | |
tree | 6410f26a88467787b3ea5a23cf63fb7f76cff6df /manifests | |
parent | cebc86b96e0f8598f0974af4c8543d3bfbad9d49 (diff) | |
download | puppet-pyroscope-9c0a1fa5351f327cb968b27e93f0f410c4130867.tar.gz puppet-pyroscope-9c0a1fa5351f327cb968b27e93f0f410c4130867.tar.bz2 |
Adds pyroscope::dependencies
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/dependencies.pp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/manifests/dependencies.pp b/manifests/dependencies.pp new file mode 100644 index 0000000..19bd054 --- /dev/null +++ b/manifests/dependencies.pp @@ -0,0 +1,26 @@ +class pyroscope::dependencies { + # From https://github.com/pyroscope/rtorrent-ps/blob/master/docs/DebianInstallFromSource.md#build-rtorrent-and-core-dependencies-from-source + package { [ + 'tmux', + 'wget', + 'build-essential', + 'subversion', + 'git', + 'python-setuptools', + 'python-virtualenv', + 'python-dev', + 'libsigc++-2.0-dev', + 'libssl-dev', + 'libncurses-dev', + 'libncursesw5-dev' + 'locales', + 'libcppunit-dev', + 'autoconf', + 'automake', + 'libtool', + 'libxml2-dev', + 'libxslt1-dev', + ]: + ensure => present, + } +} |