Created
November 13, 2015 05:46
-
-
Save knakayama/90d4d3f9cbe419466e15 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
--- | |
- name: Import public key | |
apt_key: | |
keyserver: keys.gnupg.net | |
id: 1C4CBDCDCD2EFD2A | |
state: present | |
- name: Add percona apt repository | |
apt_repository: | |
repo: "{{ item }}" | |
update_cache: yes | |
state: present | |
with_items: | |
- 'deb http://repo.percona.com/apt trusty main' | |
- 'deb-src http://repo.percona.com/apt trusty main' | |
- name: Install xtrabackup | |
apt: | |
name: percona-xtrabackup | |
state: present |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment