ansible-ops-management/vars/rsync.yml

64 lines
1.9 KiB
YAML
Raw Normal View History

2022-07-17 03:10:20 +00:00
---
rsync_max_connections: '30'
rsync_no_compress: '*.gz *.tgz *.zip *.z *.Z *.rpm *.deb *.bz2 *.iso'
rsync_timeout: '600'
2023-12-04 22:08:23 +00:00
rsync_exclude: 'lost+found/ .snapshot/ .~tmp~/ /.private/ /.private/** **/.nfs* /feeds/ feeds/'
2022-07-17 03:10:20 +00:00
rsync_paths:
- name: rocky-staging
content: |
path = /mnt/repos-staging/mirror/pub/rocky
comment = Rocky Linux Staging Repositories
read only = true
refuse options = checksum
list = false
- name: rocky-production
content: |
path = /mnt/repos-production
2022-07-20 06:18:09 +00:00
comment = DEPRECATED! Rocky Linux Production - Use rocky-linux
read only = true
refuse options = checksum
list = false
- name: rocky
content: |
path = /mnt/repos-production
comment = DEPRECATED! Rocky Linux Production - Use rocky-linux
2022-07-17 03:10:20 +00:00
read only = true
refuse options = checksum
list = true
- name: rocky-linux
content: |
path = /mnt/repos-production/mirror/pub/rocky
comment = Rocky Linux Production
read only = true
refuse options = false
2022-07-20 06:18:09 +00:00
list = true
2022-07-17 03:10:20 +00:00
- name: rocky-sigs
content: |
2023-03-24 08:26:49 +00:00
path = /mnt/repos-production/mirror/pub/sig
2022-07-17 03:10:20 +00:00
comment = Rocky Linux Special Interest Groups
read only = true
refuse options = checksum
list = true
- name: rocky-everything
content: |
path = /mnt/repos-production/mirror/
comment = All content available on the mirror. Rocky (Prod+Vault), CentOS (Vault)
read only = true
refuse options = checksum
list = true
- name: rocky-vault
content: |
path = /mnt/repos-production/mirror/vault/rocky
comment = Rocky Linux Vault - Archived Releases
read only = true
refuse options = checksum
list = true
- name: centos-vault
content: |
path = /mnt/repos-production/mirror/vault/centos
comment = CentOS 8 Vault
read only = true
refuse options = checksum
list = true
...