mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-12 23:55:19 +01:00
Compare commits
4 commits
4f44565014
...
6acc2e599b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6acc2e599b | ||
|
|
1b9ae1c77f | ||
|
|
ae95adcfdc | ||
|
|
c8d3acb75f |
3 changed files with 9 additions and 4 deletions
|
|
@ -203,8 +203,10 @@ stages:
|
||||||
targets:
|
targets:
|
||||||
- name: RHEL 9.4
|
- name: RHEL 9.4
|
||||||
test: rhel/9.4
|
test: rhel/9.4
|
||||||
- name: FreeBSD 13.3
|
- name: FreeBSD 14.1
|
||||||
test: freebsd/13.3
|
test: freebsd/14.1
|
||||||
|
- name: FreeBSD 13.4
|
||||||
|
test: freebsd/13.4
|
||||||
- stage: Remote_2_18
|
- stage: Remote_2_18
|
||||||
displayName: Remote devel
|
displayName: Remote devel
|
||||||
dependsOn: []
|
dependsOn: []
|
||||||
|
|
|
||||||
3
changelogs/fragments/593_replace_freebsd_version.yml
Normal file
3
changelogs/fragments/593_replace_freebsd_version.yml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
trivial:
|
||||||
|
- Replaced FreeBSD version 13.3 with 13.4 and 14.1 in CI for devel branch.
|
||||||
|
|
@ -449,8 +449,8 @@ def main():
|
||||||
except ValueError:
|
except ValueError:
|
||||||
module.fail_json(msg='Could not determine controller hostname for rsync to send to')
|
module.fail_json(msg='Could not determine controller hostname for rsync to send to')
|
||||||
else:
|
else:
|
||||||
source = module.params['src']
|
source = '"' + module.params['src'] + '"'
|
||||||
dest = module.params['dest']
|
dest = '"' + module.params['dest'] + '"'
|
||||||
dest_port = module.params['dest_port']
|
dest_port = module.params['dest_port']
|
||||||
delete = module.params['delete']
|
delete = module.params['delete']
|
||||||
private_key = module.params['private_key']
|
private_key = module.params['private_key']
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue