Moving IRC network reference to OFTC

Also pull bind cookbook from git to fix version pinning issues and fix ChefSpec.

Change-Id: I9bd4f54d9d10e9f3aba98a297213304507b9967d
Signed-off-by: Lance Albertson <lance@osuosl.org>
This commit is contained in:
Ghanshyam Mann 2021-07-08 08:15:48 -05:00 committed by Lance Albertson
parent 9a53630c92
commit 3edce85b13
4 changed files with 8 additions and 4 deletions

View File

@ -21,3 +21,7 @@ metadata
branch: 'stable/stein'
end
end
# TODO(ramereth): Remove after this PR gets included in a release
# https://github.com/joyofhex/cookbook-bind/pull/60
cookbook 'bind', github: 'joyofhex/cookbook-bind'

View File

@ -31,6 +31,6 @@ Contacts
--------
Mailing list: groups.google.com/group/opscode-chef-openstack
IRC: #openstack-chef is our channel on irc.freenode.net
IRC: #openstack-chef is our channel on irc.oftc.net
Wiki: https://wiki.openstack.org/wiki/Chef/GettingStarted and https://docs.getchef.com/openstack.html
Twitter: @chefopenstack

View File

@ -3,7 +3,7 @@ maintainer 'openstack-chef'
maintainer_email 'openstack-discuss@lists.openstack.org'
license 'Apache-2.0'
description 'The OpenStack Identity service Keystone.'
version '19.1.0'
version '19.1.1'
%w(ubuntu redhat centos).each do |os|
supports os

View File

@ -351,7 +351,7 @@ describe 'openstack-identity::server-apache' do
variables: {
group: 'keystone',
log_dir: '/var/log/apache2',
run_dir: '/var/lock/apache2',
run_dir: '/var/lock',
server_alias: 'identity',
server_entry: '/usr/bin/keystone-wsgi-public',
server_host: '127.0.0.1',
@ -372,7 +372,7 @@ describe 'openstack-identity::server-apache' do
%r{WSGIScriptAlias / /usr/bin/keystone-wsgi-public$},
%r{ErrorLog /var/log/apache2/identity.log$},
%r{CustomLog /var/log/apache2/identity_access.log combined$},
%r{WSGISocketPrefix /var/lock/apache2$},
%r{WSGISocketPrefix /var/lock$},
].each do |line|
it do
expect(chef_run).to render_file(file).with_content(line)