Added device_default #2
No reviewers
Labels
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: Sysdeploy/ansible-modules-syncthing#2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "swapnil/ansible-modules-syncthing:master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
46448fab1d
to8d6e24c460
78def8612f
to71f3168dfd
@ -0,0 +182,4 @@
current_config = module.get_call()
# Check for changes
changes = {key: module.params[key] for key in module.params if module.params.get(key) != current_config.get(key)}
does this work correctly on lists? e.g.
allowedNetworks
,igoredFolders
?@ -0,0 +184,4 @@
# Check for changes
changes = {key: module.params[key] for key in module.params if module.params.get(key) != current_config.get(key)}
if len(changes.keys()) > 0:
how about
Also I would rather use
device_defaults
, notdevice_default
.a7909a00bf
to59a8f35db6
46ba0e7057
to31c955c5b9