itamae-plugin-recipe-postgresql 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +53 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/itamae-plugin-recipe-postgresql.gemspec +29 -0
- data/lib/itamae/plugin/recipe/postgresql/default.rb +35 -0
- data/lib/itamae/plugin/recipe/postgresql/templates/var/lib/pgsql/data/pg_hba.conf.erb +89 -0
- data/lib/itamae/plugin/recipe/postgresql/version.rb +9 -0
- metadata +104 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: a9d73de1dbd961fc23143733cf451d78d7a0957976fa77ea98c7b8a019f138fd
|
|
4
|
+
data.tar.gz: ee62efa72f9fbe307cfa8bf3a3745f09a4341de940f54b1debf8f76884258969
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 1e22f62a099c916c13c3c2c4c00ad5fd9d03a6cdaa3c18d5dbe6fb4206580c84789117752c888cd1d1bb5bd7e2e1711a95c62d2fe10b3202e7e730b970cd9df2
|
|
7
|
+
data.tar.gz: 063d4e391ee2c472906e663f48d02f0a23a550d4a2b6b398a5aa4bf9eab9e2e07bbf9c2fa2340463cf86d75c1a6a06a087cbc6f463d27ee24f40b1d1727579a7
|
data/.gitignore
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
*.gem
|
|
2
|
+
*.rbc
|
|
3
|
+
/.config
|
|
4
|
+
/coverage/
|
|
5
|
+
/InstalledFiles
|
|
6
|
+
/pkg/
|
|
7
|
+
/spec/reports/
|
|
8
|
+
/spec/examples.txt
|
|
9
|
+
/test/tmp/
|
|
10
|
+
/test/version_tmp/
|
|
11
|
+
/tmp/
|
|
12
|
+
|
|
13
|
+
# Used by dotenv library to load environment variables.
|
|
14
|
+
# .env
|
|
15
|
+
|
|
16
|
+
## Specific to RubyMotion:
|
|
17
|
+
.dat*
|
|
18
|
+
.repl_history
|
|
19
|
+
build/
|
|
20
|
+
*.bridgesupport
|
|
21
|
+
build-iPhoneOS/
|
|
22
|
+
build-iPhoneSimulator/
|
|
23
|
+
|
|
24
|
+
## Specific to RubyMotion (use of CocoaPods):
|
|
25
|
+
#
|
|
26
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
|
27
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
|
28
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
29
|
+
#
|
|
30
|
+
# vendor/Pods/
|
|
31
|
+
|
|
32
|
+
## Documentation cache and generated files:
|
|
33
|
+
/.yardoc/
|
|
34
|
+
/_yardoc/
|
|
35
|
+
/doc/
|
|
36
|
+
/rdoc/
|
|
37
|
+
|
|
38
|
+
## Environment normalization:
|
|
39
|
+
/.bundle/
|
|
40
|
+
/vendor/bundle
|
|
41
|
+
/lib/bundler/man/
|
|
42
|
+
|
|
43
|
+
# for a library or gem, you might want to ignore these files since the code is
|
|
44
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
45
|
+
Gemfile.lock
|
|
46
|
+
.ruby-version
|
|
47
|
+
.ruby-gemset
|
|
48
|
+
|
|
49
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
50
|
+
.rvmrc
|
|
51
|
+
|
|
52
|
+
# IDE configuration files
|
|
53
|
+
/.project
|
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
|
10
|
+
orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
* Using welcoming and inclusive language
|
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
|
19
|
+
* Gracefully accepting constructive criticism
|
|
20
|
+
* Focusing on what is best for the community
|
|
21
|
+
* Showing empathy towards other community members
|
|
22
|
+
|
|
23
|
+
Examples of unacceptable behavior by participants include:
|
|
24
|
+
|
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
* Public or private harassment
|
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at matsuda@lab.acs-jp.com. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
63
|
+
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
67
|
+
|
|
68
|
+
## Attribution
|
|
69
|
+
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
|
72
|
+
|
|
73
|
+
[homepage]: http://contributor-covenant.org
|
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 y-matsuda
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Itamae::Plugin::Recipe::Postgresql
|
|
2
|
+
|
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/itamae/plugin/recipe/postgresql`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
|
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'itamae-plugin-recipe-postgresql'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install itamae-plugin-recipe-postgresql
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
TODO: Write usage instructions here
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
|
+
|
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/itamae-plugin-recipe-postgresql. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
40
|
+
|
|
41
|
+
## Code of Conduct
|
|
42
|
+
|
|
43
|
+
Everyone interacting in the Itamae::Plugin::Recipe::Postgresql project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/itamae-plugin-recipe-postgresql/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "itamae/plugin/recipe/postgresql"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
+
require "itamae/plugin/recipe/postgresql/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "itamae-plugin-recipe-postgresql"
|
|
7
|
+
spec.version = Itamae::Plugin::Recipe::Postgresql::VERSION
|
|
8
|
+
spec.authors = ["y-matsuda"]
|
|
9
|
+
spec.email = ["matsuda@lab.acs-jp.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = %q{itamae recipe for postgresql installation}
|
|
12
|
+
spec.description = %q{itamae recipe for postgresql installation}
|
|
13
|
+
spec.homepage = "https://github.com/maedadev/itamae-plugin-recipe-postgresql"
|
|
14
|
+
spec.license = "MIT"
|
|
15
|
+
|
|
16
|
+
# Specify which files should be added to the gem when it is released.
|
|
17
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
18
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
19
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
20
|
+
end
|
|
21
|
+
spec.bindir = "exe"
|
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
23
|
+
spec.require_paths = ["lib"]
|
|
24
|
+
|
|
25
|
+
spec.add_dependency 'itamae', '~> 1.10', '>= 1.10.2'
|
|
26
|
+
|
|
27
|
+
spec.add_development_dependency "bundler", "~> 1.17"
|
|
28
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
29
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
%w{
|
|
2
|
+
postgresql-devel
|
|
3
|
+
postgresql-server
|
|
4
|
+
}.each do |name|
|
|
5
|
+
package name do
|
|
6
|
+
user 'root'
|
|
7
|
+
end
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
execute 'postgresql-setup initdb' do
|
|
11
|
+
user 'root'
|
|
12
|
+
command <<-EOF
|
|
13
|
+
postgresql-setup initdb
|
|
14
|
+
touch /var/lib/pgsql/data/INITIALIZED
|
|
15
|
+
EOF
|
|
16
|
+
not_if 'test -e /var/lib/pgsql/data/INITIALIZED'
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
service 'postgresql' do
|
|
20
|
+
user 'root'
|
|
21
|
+
action [:enable]
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
template '/var/lib/pgsql/data/pg_hba.conf' do
|
|
25
|
+
user 'root'
|
|
26
|
+
owner 'postgres'
|
|
27
|
+
group 'postgres'
|
|
28
|
+
mode '600'
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
service 'postgresql' do
|
|
32
|
+
user 'root'
|
|
33
|
+
subscribes :restart, 'template[/var/lib/pgsql/data/pg_hba.conf]'
|
|
34
|
+
action :nothing
|
|
35
|
+
end
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# PostgreSQL Client Authentication Configuration File
|
|
2
|
+
# ===================================================
|
|
3
|
+
#
|
|
4
|
+
# Refer to the "Client Authentication" section in the PostgreSQL
|
|
5
|
+
# documentation for a complete description of this file. A short
|
|
6
|
+
# synopsis follows.
|
|
7
|
+
#
|
|
8
|
+
# This file controls: which hosts are allowed to connect, how clients
|
|
9
|
+
# are authenticated, which PostgreSQL user names they can use, which
|
|
10
|
+
# databases they can access. Records take one of these forms:
|
|
11
|
+
#
|
|
12
|
+
# local DATABASE USER METHOD [OPTIONS]
|
|
13
|
+
# host DATABASE USER ADDRESS METHOD [OPTIONS]
|
|
14
|
+
# hostssl DATABASE USER ADDRESS METHOD [OPTIONS]
|
|
15
|
+
# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
|
|
16
|
+
#
|
|
17
|
+
# (The uppercase items must be replaced by actual values.)
|
|
18
|
+
#
|
|
19
|
+
# The first field is the connection type: "local" is a Unix-domain
|
|
20
|
+
# socket, "host" is either a plain or SSL-encrypted TCP/IP socket,
|
|
21
|
+
# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a
|
|
22
|
+
# plain TCP/IP socket.
|
|
23
|
+
#
|
|
24
|
+
# DATABASE can be "all", "sameuser", "samerole", "replication", a
|
|
25
|
+
# database name, or a comma-separated list thereof. The "all"
|
|
26
|
+
# keyword does not match "replication". Access to replication
|
|
27
|
+
# must be enabled in a separate record (see example below).
|
|
28
|
+
#
|
|
29
|
+
# USER can be "all", a user name, a group name prefixed with "+", or a
|
|
30
|
+
# comma-separated list thereof. In both the DATABASE and USER fields
|
|
31
|
+
# you can also write a file name prefixed with "@" to include names
|
|
32
|
+
# from a separate file.
|
|
33
|
+
#
|
|
34
|
+
# ADDRESS specifies the set of hosts the record matches. It can be a
|
|
35
|
+
# host name, or it is made up of an IP address and a CIDR mask that is
|
|
36
|
+
# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that
|
|
37
|
+
# specifies the number of significant bits in the mask. A host name
|
|
38
|
+
# that starts with a dot (.) matches a suffix of the actual host name.
|
|
39
|
+
# Alternatively, you can write an IP address and netmask in separate
|
|
40
|
+
# columns to specify the set of hosts. Instead of a CIDR-address, you
|
|
41
|
+
# can write "samehost" to match any of the server's own IP addresses,
|
|
42
|
+
# or "samenet" to match any address in any subnet that the server is
|
|
43
|
+
# directly connected to.
|
|
44
|
+
#
|
|
45
|
+
# METHOD can be "trust", "reject", "md5", "password", "gss", "sspi",
|
|
46
|
+
# "krb5", "ident", "peer", "pam", "ldap", "radius" or "cert". Note that
|
|
47
|
+
# "password" sends passwords in clear text; "md5" is preferred since
|
|
48
|
+
# it sends encrypted passwords.
|
|
49
|
+
#
|
|
50
|
+
# OPTIONS are a set of options for the authentication in the format
|
|
51
|
+
# NAME=VALUE. The available options depend on the different
|
|
52
|
+
# authentication methods -- refer to the "Client Authentication"
|
|
53
|
+
# section in the documentation for a list of which options are
|
|
54
|
+
# available for which authentication methods.
|
|
55
|
+
#
|
|
56
|
+
# Database and user names containing spaces, commas, quotes and other
|
|
57
|
+
# special characters must be quoted. Quoting one of the keywords
|
|
58
|
+
# "all", "sameuser", "samerole" or "replication" makes the name lose
|
|
59
|
+
# its special character, and just match a database or username with
|
|
60
|
+
# that name.
|
|
61
|
+
#
|
|
62
|
+
# This file is read on server startup and when the postmaster receives
|
|
63
|
+
# a SIGHUP signal. If you edit the file on a running system, you have
|
|
64
|
+
# to SIGHUP the postmaster for the changes to take effect. You can
|
|
65
|
+
# use "pg_ctl reload" to do that.
|
|
66
|
+
|
|
67
|
+
# Put your actual configuration here
|
|
68
|
+
# ----------------------------------
|
|
69
|
+
#
|
|
70
|
+
# If you want to allow non-local connections, you need to add more
|
|
71
|
+
# "host" records. In that case you will also need to make PostgreSQL
|
|
72
|
+
# listen on a non-local interface via the listen_addresses
|
|
73
|
+
# configuration parameter, or via the -i or -h command line switches.
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
# TYPE DATABASE USER ADDRESS METHOD
|
|
78
|
+
|
|
79
|
+
# "local" is for Unix domain socket connections only
|
|
80
|
+
local all all peer
|
|
81
|
+
# IPv4 local connections:
|
|
82
|
+
host all all 127.0.0.1/32 trust
|
|
83
|
+
# IPv6 local connections:
|
|
84
|
+
host all all ::1/128 trust
|
|
85
|
+
# Allow replication connections from localhost, by a user with the
|
|
86
|
+
# replication privilege.
|
|
87
|
+
#local replication postgres peer
|
|
88
|
+
#host replication postgres 127.0.0.1/32 ident
|
|
89
|
+
#host replication postgres ::1/128 ident
|
metadata
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: itamae-plugin-recipe-postgresql
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- y-matsuda
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-05-22 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: itamae
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.10'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.10.2
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - "~>"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.10'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.10.2
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: bundler
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '1.17'
|
|
40
|
+
type: :development
|
|
41
|
+
prerelease: false
|
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '1.17'
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: rake
|
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '10.0'
|
|
54
|
+
type: :development
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '10.0'
|
|
61
|
+
description: itamae recipe for postgresql installation
|
|
62
|
+
email:
|
|
63
|
+
- matsuda@lab.acs-jp.com
|
|
64
|
+
executables: []
|
|
65
|
+
extensions: []
|
|
66
|
+
extra_rdoc_files: []
|
|
67
|
+
files:
|
|
68
|
+
- ".gitignore"
|
|
69
|
+
- CODE_OF_CONDUCT.md
|
|
70
|
+
- Gemfile
|
|
71
|
+
- LICENSE.txt
|
|
72
|
+
- README.md
|
|
73
|
+
- Rakefile
|
|
74
|
+
- bin/console
|
|
75
|
+
- bin/setup
|
|
76
|
+
- itamae-plugin-recipe-postgresql.gemspec
|
|
77
|
+
- lib/itamae/plugin/recipe/postgresql/default.rb
|
|
78
|
+
- lib/itamae/plugin/recipe/postgresql/templates/var/lib/pgsql/data/pg_hba.conf.erb
|
|
79
|
+
- lib/itamae/plugin/recipe/postgresql/version.rb
|
|
80
|
+
homepage: https://github.com/maedadev/itamae-plugin-recipe-postgresql
|
|
81
|
+
licenses:
|
|
82
|
+
- MIT
|
|
83
|
+
metadata: {}
|
|
84
|
+
post_install_message:
|
|
85
|
+
rdoc_options: []
|
|
86
|
+
require_paths:
|
|
87
|
+
- lib
|
|
88
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
89
|
+
requirements:
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '0'
|
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - ">="
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
version: '0'
|
|
98
|
+
requirements: []
|
|
99
|
+
rubyforge_project:
|
|
100
|
+
rubygems_version: 2.7.8
|
|
101
|
+
signing_key:
|
|
102
|
+
specification_version: 4
|
|
103
|
+
summary: itamae recipe for postgresql installation
|
|
104
|
+
test_files: []
|