This repository has been archived by the owner on Jan 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 128
/
metadata.rb
32 lines (29 loc) · 1.97 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name "postgresql"
maintainer "Phil Cohen"
maintainer_email "[email protected]"
license "MIT"
description "Installs PostgreSQL, The world's most advanced open source database."
long_description IO.read(File.join(File.dirname(__FILE__), "README.md"))
version "0.16.1"
recipe "postgresql", "Set up the apt repository and install dependent packages"
recipe "postgresql::apt_repository", "Internal recipe to setup the apt repository"
recipe "postgresql::client", "Front-end programs for PostgreSQL 9.x"
recipe "postgresql::configuration", "Internal recipe to manage configuration files"
recipe "postgresql::contrib", "Additional facilities for PostgreSQL"
recipe "postgresql::data_directory", "Internal recipe to setup the data directory"
recipe "postgresql::dbg", "Debug symbols for the server daemon"
recipe "postgresql::debian_backports", "Internal recipe to manage debian backports"
recipe "postgresql::doc", "Documentation for the PostgreSQL database management system"
recipe "postgresql::libpq", "PostgreSQL C client library and header files for libpq5 (PostgreSQL library)"
recipe "postgresql::postgis", "Geographic objects support for PostgreSQL 9.x"
recipe "postgresql::server", "Object-relational SQL database, version 9.x server"
recipe "postgresql::server_dev", "Development files for PostgreSQL server-side programming"
recipe "postgresql::service", "Internal recipe to declare the system service"
recipe "postgresql::setup_databases", "Internal recipe to manage specified databases"
recipe "postgresql::setup_extensions", "Internal recipe to manage specified database extensions"
recipe "postgresql::setup_languages", "Internal recipe to manage specified database languages"
recipe "postgresql::setup_users", "Internal recipe to manage specified users"
supports "ubuntu"
supports "debian"
depends "apt", ">= 2.6.1"
suggests "minitest-handler"