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.
- machineconfig/cluster/sessions_managers/wt_local_manager.py +15 -6
- machineconfig/jobs/installer/custom_dev/winget.py +1 -0
- machineconfig/jobs/installer/installer_data.json +2403 -0
- machineconfig/jobs/installer/package_groups.py +154 -0
- machineconfig/scripts/python/devops.py +33 -42
- machineconfig/scripts/python/devops_devapps_install.py +87 -34
- machineconfig/scripts/python/fire_agents.py +49 -70
- machineconfig/scripts/python/fire_agents_help_launch.py +1 -8
- machineconfig/scripts/python/fire_agents_helper_types.py +12 -0
- machineconfig/scripts/python/fire_jobs.py +0 -6
- machineconfig/scripts/python/fire_jobs_args_helper.py +0 -1
- machineconfig/scripts/python/fire_jobs_layout_helper.py +100 -36
- machineconfig/scripts/python/interactive.py +10 -31
- machineconfig/scripts/python/repos.py +7 -6
- machineconfig/scripts/python/share_terminal.py +6 -4
- machineconfig/setup_linux/web_shortcuts/interactive.sh +1 -1
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +1 -1
- machineconfig/utils/installer.py +15 -14
- machineconfig/utils/installer_utils/github_release_bulk.py +2 -12
- machineconfig/utils/installer_utils/installer_abc.py +56 -60
- machineconfig/utils/procs.py +0 -4
- machineconfig/utils/schemas/installer/installer_types.py +0 -1
- {machineconfig-4.7.dist-info → machineconfig-4.9.dist-info}/METADATA +1 -1
- {machineconfig-4.7.dist-info → machineconfig-4.9.dist-info}/RECORD +27 -30
- {machineconfig-4.7.dist-info → machineconfig-4.9.dist-info}/entry_points.txt +0 -1
- machineconfig/jobs/installer/packages_custom_dev.json +0 -380
- machineconfig/jobs/installer/packages_custom_essential.json +0 -39
- machineconfig/jobs/installer/packages_github_dev.json +0 -1127
- machineconfig/jobs/installer/packages_github_essential.json +0 -787
- machineconfig/scripts/linux/fire_agents +0 -2
- machineconfig/scripts/linux/programs +0 -21
- {machineconfig-4.7.dist-info → machineconfig-4.9.dist-info}/WHEEL +0 -0
- {machineconfig-4.7.dist-info → machineconfig-4.9.dist-info}/top_level.txt +0 -0
|
@@ -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"
|
|
File without changes
|
|
File without changes
|