mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge branch 'main' into feat/add_proxmox_backup_module
This commit is contained in:
commit
64e2f06c2a
1 changed files with 11 additions and 1 deletions
|
@ -685,6 +685,13 @@ def proxmox_backup_argument_spec():
|
|||
'repeat_missed': {
|
||||
'type': 'bool'
|
||||
},
|
||||
'remove': {
|
||||
'type': 'bool',
|
||||
'default': True
|
||||
},
|
||||
'repeat_missed': {
|
||||
'type': 'bool',
|
||||
},
|
||||
'schedule': {
|
||||
'type': 'str'
|
||||
},
|
||||
|
@ -700,6 +707,9 @@ def proxmox_backup_argument_spec():
|
|||
'stop': {
|
||||
'type': 'bool'
|
||||
},
|
||||
'stop': {
|
||||
'type': 'bool',
|
||||
},
|
||||
'stopwait': {
|
||||
'type': 'int'
|
||||
},
|
||||
|
@ -748,4 +758,4 @@ def main():
|
|||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
main()
|
Loading…
Reference in a new issue