Skip to content
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

Fix MySQL package for Debian #70

Merged
merged 1 commit into from
Jun 20, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libraries/authoritative_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def default_authoritative_run_user
def backend_package_per_platform
return 'pdns-backend-geo' if node['platform_family'] == 'debian' && new_resource.instance_name == 'geo'
return 'pdns-backend-ldap' if node['platform_family'] == 'debian' && new_resource.instance_name == 'ldap'
return 'pdns-backend-mysql ' if node['platform_family'] == 'debian' && new_resource.instance_name == 'mysql'
return 'pdns-backend-mysql' if node['platform_family'] == 'debian' && new_resource.instance_name == 'mysql'
return 'pdns-backend-pgsql' if node['platform_family'] == 'debian' && new_resource.instance_name == 'postgresql'
return 'pdns-backend-pipe' if node['platform_family'] == 'debian' && new_resource.instance_name == 'pipe'
return 'pdns-backend-sqlite3' if node['platform_family'] == 'debian' && new_resource.instance_name == 'sqlite'
Expand All @@ -54,4 +54,4 @@ def backend_package_per_platform
return 'pdns-backend-postgresql' if node['platform_family'] == 'rhel' && new_resource.instance_name == 'postgresql'
return 'pdns-backend-remote' if node['platform_family'] == 'rhel' && new_resource.instance_name == 'remote'
return 'pdns-backend-sqlite' if node['platform_family'] == 'rhel' && new_resource.instance_name == 'sqlite'
end
end