From a7bffcd471f936b62f57bcaf0c43e0dd19fb5491 Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Sun, 25 Feb 2024 06:41:40 +0000 Subject: [PATCH] install by default --- api/tacticalrmm/tacticalrmm/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/tacticalrmm/tacticalrmm/settings.py b/api/tacticalrmm/tacticalrmm/settings.py index b6cb08046c..49865b5412 100644 --- a/api/tacticalrmm/tacticalrmm/settings.py +++ b/api/tacticalrmm/tacticalrmm/settings.py @@ -39,7 +39,7 @@ # Install Nushell on the agent # https://github.com/nushell/nushell -INSTALL_NUSHELL = False +INSTALL_NUSHELL = True # GitHub version to download. The file will be downloaded from GitHub, extracted and installed. # Version to download. If INSTALL_NUSHELL_URL is not provided, the file will be downloaded from GitHub, # extracted and installed. @@ -61,7 +61,7 @@ # Install Deno on the agent # https://github.com/denoland/deno -INSTALL_DENO = False +INSTALL_DENO = True # Version to download. If INSTALL_DENO_URL is not provided, the file will be downloaded from GitHub, # extracted and installed. INSTALL_DENO_VERSION = "v1.41.0"