From d70a2f559062a0ce53d9d2a16d40fff199c7d868 Mon Sep 17 00:00:00 2001 From: Marko Lisica <83164494+marko-lisica@users.noreply.github.com> Date: Fri, 27 Sep 2024 19:37:51 +0200 Subject: [PATCH 1/3] Update rest-api.md --- docs/REST API/rest-api.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/REST API/rest-api.md b/docs/REST API/rest-api.md index 4724b4849948..1d8916dea8bd 100644 --- a/docs/REST API/rest-api.md +++ b/docs/REST API/rest-api.md @@ -9192,6 +9192,9 @@ Add a package (.pkg, .msi, .exe, .deb) to install on macOS, Windows, or Linux (U | pre_install_query | string | form | Query that is pre-install condition. If the query doesn't return any result, Fleet won't proceed to install. | | post_install_script | string | form | The contents of the script to run after install. If the specified script fails (exit code non-zero) software install will be marked as failed and rolled back. | | self_service | boolean | form | Self-service software is optional and can be installed by the end user. | +| automatic_install | boolean | form | Software will be automatically installed on each host. | +| automatic_install_query | string | form | Software is installed if the query doesn't return results. If not specified Fleet runs default query. | + #### Example From 9ee22f68721ccacb60f8f5dcd8a8c2002d79cbf3 Mon Sep 17 00:00:00 2001 From: Marko Lisica <83164494+marko-lisica@users.noreply.github.com> Date: Fri, 27 Sep 2024 19:40:00 +0200 Subject: [PATCH 2/3] Update rest-api.md --- docs/REST API/rest-api.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/REST API/rest-api.md b/docs/REST API/rest-api.md index 1d8916dea8bd..af767fe10b9e 100644 --- a/docs/REST API/rest-api.md +++ b/docs/REST API/rest-api.md @@ -8977,6 +8977,7 @@ Returns information about the specified software. By default, `versions` are sor "post_install_script": "sudo /Applications/Falcon.app/Contents/Resources/falconctl license 0123456789ABCDEFGHIJKLMNOPQRSTUV-WX", "uninstall_script": "/Library/CS/falconctl uninstall", "self_service": true, + "automatic_install": true, "status": { "installed": 3, "pending_install": 1, From c858055fe7223f1e667cf118f7a7862453fd56c4 Mon Sep 17 00:00:00 2001 From: Rachael Shaw Date: Fri, 27 Sep 2024 13:58:14 -0500 Subject: [PATCH 3/3] Update docs/REST API/rest-api.md --- docs/REST API/rest-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/REST API/rest-api.md b/docs/REST API/rest-api.md index af767fe10b9e..89c6223d13a6 100644 --- a/docs/REST API/rest-api.md +++ b/docs/REST API/rest-api.md @@ -9194,7 +9194,7 @@ Add a package (.pkg, .msi, .exe, .deb) to install on macOS, Windows, or Linux (U | post_install_script | string | form | The contents of the script to run after install. If the specified script fails (exit code non-zero) software install will be marked as failed and rolled back. | | self_service | boolean | form | Self-service software is optional and can be installed by the end user. | | automatic_install | boolean | form | Software will be automatically installed on each host. | -| automatic_install_query | string | form | Software is installed if the query doesn't return results. If not specified Fleet runs default query. | +| automatic_install_query | string | form | Software is installed if the query doesn't return results. If not specified, Fleet runs default query. | #### Example