Allow using device uuid in storage::mount
Previously, the `swift::storage::mount` allowed any type of string, making it possible to use UUID=4aa242a4-0ab3-4037-9137-1d58c7f2b5f8 or even 4aa242a4-0ab3-4037-9137-1d58c7f2b5f8 for example. But now, as the device parameter is Swift::MountDevice, this cannot be done. This patch fixes this regression. Change-Id: I57619c628ee7a6d5e60260235fbd6d83f514be83
This commit is contained in:
parent
9ac945a2cb
commit
f07444d3c4
@ -7,7 +7,9 @@ describe 'Swift::MountDevice' do
|
|||||||
'/dev',
|
'/dev',
|
||||||
'/dev/sda',
|
'/dev/sda',
|
||||||
'/opt/swift/diskfile',
|
'/opt/swift/diskfile',
|
||||||
'LABEL=foo'
|
'LABEL=foo',
|
||||||
|
'50e68500-9920-4ffa-a4cd-34fd2a893530',
|
||||||
|
'UUID=50e68500-9920-4ffa-a4cd-34fd2a893530',
|
||||||
].each do |value|
|
].each do |value|
|
||||||
it { is_expected.to allow_value(value) }
|
it { is_expected.to allow_value(value) }
|
||||||
end
|
end
|
||||||
@ -24,7 +26,13 @@ describe 'Swift::MountDevice' do
|
|||||||
'dev',
|
'dev',
|
||||||
'dev/sda',
|
'dev/sda',
|
||||||
'LABEL=',
|
'LABEL=',
|
||||||
'LABELfoo'
|
'LABELfoo',
|
||||||
|
'50e6850099204ffaa4cd34fd2a893530',
|
||||||
|
'50e68500-9920-3ffa-a4cd-34fd2a893530',
|
||||||
|
'UUID=',
|
||||||
|
'UUID=foo',
|
||||||
|
'UUID=50e6850099204ffaa4cd34fd2a893530',
|
||||||
|
'UUID=50e68500-9920-3ffa-a4cd-34fd2a893530',
|
||||||
].each do |value|
|
].each do |value|
|
||||||
it { is_expected.not_to allow_value(value) }
|
it { is_expected.not_to allow_value(value) }
|
||||||
end
|
end
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
type Swift::MountDevice = Variant[
|
type Swift::MountDevice = Variant[
|
||||||
Stdlib::Absolutepath,
|
Stdlib::Absolutepath,
|
||||||
Pattern[/^LABEL=.+$/]
|
Pattern[/^LABEL=.+$/],
|
||||||
|
Pattern[/^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}$/],
|
||||||
|
Pattern[/^UUID=[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}$/],
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user