Commit 03d666031cbb03c6170e5419bd65892d59666fa6
1 parent
3371aaf9
Exists in
master
and in
28 other branches
Remove hard dependency on PostgreSQL
In some setups, you want to have the PostgreSQL server in a separate machine, so we cannot depend on the fact that PostgreSQL is installed in the same system. Packages listed in Recommends: will be installed by default, so we don't break the most common use case that is having both Noosfero and PostgreSQL in the same system.
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
debian/control
... | ... | @@ -47,11 +47,12 @@ Depends: |
47 | 47 | memcached, |
48 | 48 | debconf, |
49 | 49 | dbconfig-common, |
50 | - postgresql, | |
51 | 50 | adduser, |
52 | 51 | exim4 | mail-transport-agent, |
53 | 52 | ${misc:Depends} |
54 | -Recommends: postgresql-client | |
53 | +Recommends: | |
54 | + postgresql, | |
55 | + postgresql-client | |
55 | 56 | Description: free web-based platform for social networks |
56 | 57 | Noosfero is a web platform for social and solidarity economy networks with |
57 | 58 | blog, e-Porfolios, CMS, RSS, thematic discussion, events agenda and collective | ... | ... |