forked from saltstack-formulas/postgres-formula
-
Notifications
You must be signed in to change notification settings - Fork 0
Syncing with upstream #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Regex: - `^` Line start - `#*\s*` Find line even if commented out - `(port)` 'port' -- capture as backreference `\1` - `\s*=\s*` Equals sign, whether or not surrounded by whitespace - `\d{4,5}` Existing port value, expected at 4/5 digits - `(.*)` Remainder (i.e. comment) -- capture as backreference `\2` - `$` Line end
use upstream repo for python if configured
* Regex modified: - Ensure whitespace before comment is maintained - Consistent with surrounding lines in the file * Used YAML pipe `>-` due to the colon-space (`: `) in the comment
Improve Jinja2 syntax in repo.yaml
Upstream commit: - postgres/postgres@be37c21 - 9 Mar 2017 - master REL_11_BETA1 REL_10_4 ... REL_10_BETA1
…sion`) Upstream instructions: https://www.postgresql.org/download/linux/ubuntu/. * deb http://apt.postgresql.org/pub/repos/apt/ YOUR_UBUNTU_VERSION_HERE-pgdg main
Client should not install dev libs by default
fix typo in package name
Use upstream instructions for Apt `pkg_repo` (remove unnecessary `version`)
Allow `port` to be configurable
add fromrepo support for pg client
Fix 'fromrepo' bug in fedora macro
Fix dev package os dependencies
Enable replication connections by default in `pg_hba.conf`
Fix /Library/LaunchDaemons/limit.maxfiles.plist on MacOS
Allow conf/data directory separation
Fix `conf_dir` => `data_dir` required for preparing cluster
* `postgresql-cluster-prepared`: `dir_mode` is set in `postgresql-config-dir` * `postgresql-config-dir`: `file_mode` for some files is set to 600, and I think all other files are good with default mode. So don't touch any files, only change dirs.
Don't set modes with every run
Allow configuration of cluster `name`, `locale` & `encoding`
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.