forked from redhat-openstack/openstack-puppet-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tripleo to a388f84654701f5d6604e0833a6a8fe1b90fcfdd
a388f84654701f5d6604e0833a6a8fe1b90fcfdd Merge "Make setup of keepalived optional via manage_vip parameter" a3d93790c284863d9b4bc32eae8dd35c6e6cb68c Merge "Bump rspec-puppet to 2.1.0" d6405961b49147499574d7ceea3f57c0f48d06f9 Bump rspec-puppet to 2.1.0 20fad5ae9117f529fdc5e0ad15aca78c6a3a59f7 Merge "Enable access to HAProxy stats page" 93b309b2f3b897e1b55634f576706f81b8ccb2e1 Merge "Add $::galera_bootstrapped fact" ec7667b43c4d8dd5fb8222c3ddd9572e08477390 Merge "Do not make RabbitMQ listen on public vip" 70cb73ca6e53cbca3a841a67d2bb1644461754c6 Do not make RabbitMQ listen on public vip 8c29315cbcd5e255e1287e86cd8134590b9e7d06 Make setup of keepalived optional via manage_vip parameter dfcb703bce19c8cc9113c294295de977c51c8e7c Enable access to HAProxy stats page 9ad337d15e7e3305c0872aee231f75e7af55e889 Add $::galera_bootstrapped fact Change-Id: Ia4e32678ad7e5e58e92384e942d41e68561d07d0
- Loading branch information
Showing
4 changed files
with
68 additions
and
42 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 2015 Red Hat, Inc. | ||
# All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
# not use this file except in compliance with the License. You may obtain | ||
# a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
Facter.add('galera_bootstrapped') do | ||
setcode do | ||
FileTest.exists?('/var/lib/mysql/grastate.dat') | ||
end | ||
end |
This file contains 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