This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
evolix
/
ansible-roles
Watch
14
Star
2
Fork
1
Code
Issues
53
Pull Requests
12
Releases
31
Wiki
Activity
Browse Source
Add set variables for debian stretch and jessie
pull/119/head
Eric Morino
1 month ago
parent
1160a5e809
commit
c324866cd2
2 changed files
with
10 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
postgresql/tasks/packages_jessie.yml
+5
-0
postgresql/tasks/packages_stretch.yml
+ 5
- 0
postgresql/tasks/packages_jessie.yml
View File
@ -1,5 +1,10 @@
---
-
name
:
"Set variables (Debian 8)"
set_fact:
postgresql_version
:
'9.4'
when
:
postgresql_version == ""
-
include
:
pgdg-repo.yml
when
:
postgresql_version != '9.4'
+ 5
- 0
postgresql/tasks/packages_stretch.yml
View File
@ -1,5 +1,10 @@
---
-
name
:
"Set variables (Debian 9)"
set_fact:
postgresql_version
:
'9.6'
when
:
postgresql_version == ""
-
include
:
pgdg-repo.yml
when
:
postgresql_version != '9.6'
Write
Preview
Loading…
Cancel
Save