Cannot create multiple named sections with same name , but with different section types

Can there be a config file like below?

config test 'abc'
	option name1 'value1'
	option name2 'value2'

config test2 'abc'
	option name1 'value1'
	option name2 'value2'

config test10 'abc'
	option name1 'value1'
	option name2 'value2'

Every time this was attempted, config is always getting renamed and was not able to create a config like above.

No this is not possible. Section identifiers need to be globally unique.

1 Like

Thanks @jow

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.