machineconfig 4.7__py3-none-any.whl → 4.9__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of machineconfig might be problematic. Click here for more details.

Files changed (33) hide show
  1. machineconfig/cluster/sessions_managers/wt_local_manager.py +15 -6
  2. machineconfig/jobs/installer/custom_dev/winget.py +1 -0
  3. machineconfig/jobs/installer/installer_data.json +2403 -0
  4. machineconfig/jobs/installer/package_groups.py +154 -0
  5. machineconfig/scripts/python/devops.py +33 -42
  6. machineconfig/scripts/python/devops_devapps_install.py +87 -34
  7. machineconfig/scripts/python/fire_agents.py +49 -70
  8. machineconfig/scripts/python/fire_agents_help_launch.py +1 -8
  9. machineconfig/scripts/python/fire_agents_helper_types.py +12 -0
  10. machineconfig/scripts/python/fire_jobs.py +0 -6
  11. machineconfig/scripts/python/fire_jobs_args_helper.py +0 -1
  12. machineconfig/scripts/python/fire_jobs_layout_helper.py +100 -36
  13. machineconfig/scripts/python/interactive.py +10 -31
  14. machineconfig/scripts/python/repos.py +7 -6
  15. machineconfig/scripts/python/share_terminal.py +6 -4
  16. machineconfig/setup_linux/web_shortcuts/interactive.sh +1 -1
  17. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +1 -1
  18. machineconfig/utils/installer.py +15 -14
  19. machineconfig/utils/installer_utils/github_release_bulk.py +2 -12
  20. machineconfig/utils/installer_utils/installer_abc.py +56 -60
  21. machineconfig/utils/procs.py +0 -4
  22. machineconfig/utils/schemas/installer/installer_types.py +0 -1
  23. {machineconfig-4.7.dist-info → machineconfig-4.9.dist-info}/METADATA +1 -1
  24. {machineconfig-4.7.dist-info → machineconfig-4.9.dist-info}/RECORD +27 -30
  25. {machineconfig-4.7.dist-info → machineconfig-4.9.dist-info}/entry_points.txt +0 -1
  26. machineconfig/jobs/installer/packages_custom_dev.json +0 -380
  27. machineconfig/jobs/installer/packages_custom_essential.json +0 -39
  28. machineconfig/jobs/installer/packages_github_dev.json +0 -1127
  29. machineconfig/jobs/installer/packages_github_essential.json +0 -787
  30. machineconfig/scripts/linux/fire_agents +0 -2
  31. machineconfig/scripts/linux/programs +0 -21
  32. {machineconfig-4.7.dist-info → machineconfig-4.9.dist-info}/WHEEL +0 -0
  33. {machineconfig-4.7.dist-info → machineconfig-4.9.dist-info}/top_level.txt +0 -0
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env bash
2
- uv run --python 3.13 --no-dev --project $HOME/code/machineconfig fire_agents "$@"
@@ -1,21 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- # Save the current directory
4
- original_dir=$(pwd)
5
-
6
- # Navigate to the directory
7
- cd ~/code/machineconfig/src/machineconfig/scripts/linux/others
8
-
9
- # List all files and pipe the output to fzf for user selection
10
- selected_file=$(ls | fzf)
11
-
12
- # Check if a file was selected
13
- if [ -n "$selected_file" ]; then
14
- # Source the selected file
15
- source "$selected_file"
16
- else
17
- echo "No file selected."
18
- fi
19
-
20
- # Change back to the original directory
21
- cd "$original_dir"