Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
c882b8c
refactor: improve install script for customizable installation directory
tomchon Dec 17, 2025
3f33dce
fix: update installation script for correct version mode and tool names
tomchon Dec 17, 2025
3eaeb7d
fix: correct quoting and comments in installation script for improved…
tomchon Dec 17, 2025
3be85c6
fix: remove commented debug output for cleaner installation script
tomchon Dec 17, 2025
9421185
refactor: update installation paths and add customizable installation…
tomchon Dec 18, 2025
ec5b74d
feat: add help option to installation script and improve directory ha…
tomchon Dec 19, 2025
4a3fad8
Merge remote-tracking branch 'origin/main' into enh/tsdb-define-insta…
tomchon Dec 19, 2025
c4f6e95
fix: remove unnecessary sudo from virtual environment creation
tomchon Dec 19, 2025
b4c464b
Merge remote-tracking branch 'origin/main' into enh/tsdb-define-insta…
tomchon Dec 19, 2025
1b40d60
fix: update anode creation IP address in test case
tomchon Dec 19, 2025
233d45a
fix: add missing sys and os imports for path configuration
tomchon Dec 19, 2025
15787b6
feat: add support for additional virtual environments and model services
tomchon Dec 20, 2025
2a093e4
refactor: support dynamic download model.
hjxilinx Dec 20, 2025
58952b7
fix: fix errors.
hjxilinx Dec 20, 2025
d71239f
feat: add support for additional model environments and update start-…
tomchon Dec 21, 2025
97a329c
fix: comment out shesd algorithm query in anomaly window test
tomchon Dec 21, 2025
f652f2e
feat: unify model service start and stop scripts for improved usability
tomchon Dec 21, 2025
1a268c8
feat: update uninstall script to support dynamic virtual environment …
tomchon Dec 21, 2025
09f5fa3
fix: improve formatting and clarity in model service start/stop scrip…
tomchon Dec 21, 2025
872961e
fix: add punctuation and improve usage instructions in model service …
tomchon Dec 21, 2025
67907c3
fix: improve formatting and clarity in model service startup and shut…
tomchon Dec 21, 2025
ca81322
fix: correct link path in management documentation
tomchon Dec 21, 2025
43b4f15
feat: add stop-model script to installation and enhance model service…
tomchon Dec 21, 2025
bd11c3f
fix: improve comments and logging messages for clarity in installatio…
tomchon Dec 22, 2025
6761d69
Merge remote-tracking branch 'origin/main' into enh/tsdb-define-insta…
tomchon Dec 22, 2025
351ae30
fix(uninstall): update clean_venv function to prompt for manual delet…
tomchon Dec 22, 2025
35c2349
fix(install): modify install_main_path to only delete non-data/log/cf…
tomchon Dec 22, 2025
2cfda94
fix(test): update anode creation and expected row counts in TDgpt tests
tomchon Dec 22, 2025
d4f900d
fix(install): update service file handling to use a temporary file du…
tomchon Dec 22, 2025
7f08a0f
fix(install): update service configuration path in install_service_on…
tomchon Dec 23, 2025
c337dfd
Refactor remove.sh script for improved usability and structure
tomchon Dec 25, 2025
b024140
Merge remote-tracking branch 'origin/enh/tsdb-define-install-dir' int…
tomchon Dec 25, 2025
7106bc9
fix(install): remove redundant assignment of service_config in instal…
tomchon Dec 25, 2025
b450b5d
fix(install): update installation script for client and server modes,…
tomchon Dec 25, 2025
8a0fd70
fix(install): update version mode to edge, improve error messages, an…
tomchon Dec 25, 2025
851f0ab
fix(install): change default version type from client to server in in…
tomchon Dec 25, 2025
64c8e08
fix(install): streamline installation script by removing unnecessary …
tomchon Dec 25, 2025
6658f24
fix(install): enhance path handling in installation scripts and impro…
tomchon Dec 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(install): remove redundant assignment of service_config in instal…
…l_service_on_systemd function
  • Loading branch information
tomchon committed Dec 25, 2025
commit 7106bc9e4ca67c2768c055f39ab14193e7b2bc11
1 change: 0 additions & 1 deletion packaging/tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,6 @@ function clean_service_on_systemd() {
function install_service_on_systemd() {
clean_service_on_systemd $1
service_config="${service_config_dir}/$1.service"
service_config="${service_config_dir}/$1.service"
cfg_source_dir=${script_dir}/cfg
if [[ "$1" == "${xname}" || "$1" == "${explorerName}" ]]; then
if [ "$verMode" == "cluster" ] && [ "${entMode}" != "lite" ]; then
Expand Down
Loading