Skip to content

Commit

Permalink
Merge pull request redhat-openstack#30 from jguiditta/mysql_firewall_…
Browse files Browse the repository at this point in the history
…rule

Open port for mysql to accept incoming connections.
  • Loading branch information
cwolferh committed Oct 25, 2013
2 parents cdbefae + ab54fd4 commit 2136c34
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions puppet/modules/quickstack/manifests/hamysql/node.pp
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,10 @@
cinder_db_password => $cinder_db_password,
require => Class['quickstack::hamysql::mysql::rootpw'],
}

firewall { '002 mysql incoming':
proto => 'tcp',
dport => ['3306'],
action => 'accept',
}
}

0 comments on commit 2136c34

Please sign in to comment.