diff options
author | Scott Moser <smoser@ubuntu.com> | 2018-04-18 20:37:07 -0600 |
---|---|---|
committer | Chad Smith <chad.smith@canonical.com> | 2018-04-18 20:37:07 -0600 |
commit | 6811926fdb991ad02ad9c0134c1d4bbe82ef87e1 (patch) | |
tree | b90a1a50f7ac52e050ac006d88e6be75948ded21 /cloudinit/config/cc_snap.py | |
parent | 6d48d265a0548a2dc23e587f2a335d4e38e8db90 (diff) | |
download | vyos-cloud-init-6811926fdb991ad02ad9c0134c1d4bbe82ef87e1.tar.gz vyos-cloud-init-6811926fdb991ad02ad9c0134c1d4bbe82ef87e1.zip |
Schema: do not warn on duplicate items in commands.
runcmd, bootcmd, snap/commands, ubuntu-advantage/commands would
log warning (and fail if strict) on duplicate values in the commands.
But those should be allowed. Example, it is perfectly valid to do:
runcmd: ['sleep 1', 'sleep 1']
LP: #1764264
Diffstat (limited to 'cloudinit/config/cc_snap.py')
-rw-r--r-- | cloudinit/config/cc_snap.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cloudinit/config/cc_snap.py b/cloudinit/config/cc_snap.py index 34a53fd4..a7a03214 100644 --- a/cloudinit/config/cc_snap.py +++ b/cloudinit/config/cc_snap.py @@ -110,7 +110,6 @@ schema = { 'additionalItems': False, # Reject non-string & non-list 'minItems': 1, 'minProperties': 1, - 'uniqueItems': True }, 'squashfuse_in_container': { 'type': 'boolean' |