-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
As described in this wiki article: https://en.wikipedia.org/wiki/INI_file#Sections
Keys may, but need not, be grouped into arbitrarily named sections
I want to create an ini file that resembles something like this:
authorityKeyIdentifier=keyid,issuer
basicConstraints=CA:FALSE
keyUsage = digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment
subjectAltName = @alt_names
[alt_names]
DNS.1 = *.github.comNotice that the first set of key, value pairs do not belong to any section.
Using tini for creating this type of ini results in the following:
[]
authorityKeyIdentifier = keyid,issuer
basicConstraints = CA:FALSE
keyUsage = digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment
subjectAltName = @alt_names
[alt_names]
DNS.1 = *.github.comIs there a way to tell it to not create the empty [] section?
Metadata
Metadata
Assignees
Labels
No labels