one more quick question.. I'm using groovy instead of properties file.
so far following is works well
rundeck.storage.provider."1".config.baseDir=/rundeck/storage
rundeck.storage.provider."1".path=/
rundeck.storage.provider."1".type=file
I was trying to rewrite options above to something with "groovy" style
rundeck.storage.provider {
[
config.baseDir = "/rundeck/storage"
path = "/"
type = "file"
]
}
or
rundeck {
storage {
provider {
[
{
config {
baseDir = "/rundeck/storage"
}
path = "/"
type = "file"
}
]
}
}
}
and that doesn't work, any hint what I'm doing wrong?
Thanks