I'm setting up a cloud-init to make it easier to deploy Linux workstations. I want to display the various links to my sites on my Firefox browser. Bookmark my services. D… (read more)
I'm setting up a cloud-init to make it easier to deploy Linux workstations. I want to display the various links to my sites on my Firefox browser. Bookmark my services. Do you think this is possible? I've already applied a rule to retrieve certificates, but it seems complicated for bookmarks.
Here's an extract :
{
"policies": {
"Bookmarks": [
{
"Title": "Main",
"URL": "https://service.net",
"Folder": "Bookmarks Toolbar"
},
{
"Title": "Service 1",
"URL": "https://service1.net",
"Folder": "Bookmarks Toolbar"
},
{
"Title": "Service 2",
"URL": "https://service2.net",
"Folder": "Bookmarks Toolbar"
},
{
"Title": "Documentation",
"URL": "https://docs.net",
"Folder": "Bookmarks Toolbar"
}
]
}
}
Best Regards,
Dylan