Skip to content

Commit

Permalink
Merge pull request geerlingguy#42 from jap/ubuntu-18
Browse files Browse the repository at this point in the history
Add support for Ubuntu 18.04
  • Loading branch information
geerlingguy committed May 11, 2018
2 parents 035897b + a251a30 commit 66e8af0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ env:
- distro: centos6
postgresql_bin_dir: /usr/bin
postgresql_data_dir: /var/lib/pgsql/data
- distro: ubuntu1804
postgresql_bin_dir: /usr/lib/postgresql/10/bin
postgresql_data_dir: /var/lib/postgresql/10/main
- distro: ubuntu1604
postgresql_bin_dir: /usr/lib/postgresql/9.5/bin
postgresql_data_dir: /var/lib/postgresql/9.5/main
Expand Down
10 changes: 10 additions & 0 deletions vars/Ubuntu-18.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
__postgresql_version: "10"
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
__postgresql_daemon: postgresql
__postgresql_packages:
- postgresql
- postgresql-contrib
- libpq-dev

0 comments on commit 66e8af0

Please sign in to comment.