machineconfig 5.71__py3-none-any.whl → 5.72__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/jobs/installer/package_groups.py +7 -8
- machineconfig/scripts/python/croshell.py +5 -6
- machineconfig/scripts/python/devops_helpers/cli_config.py +1 -1
- machineconfig/scripts/python/devops_helpers/cli_self.py +3 -3
- machineconfig/scripts/python/interactive.py +2 -2
- machineconfig/scripts/python/nw/mount_nfs +1 -1
- machineconfig/scripts/python/repos_helpers/count_lines_frontend.py +1 -1
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/setup_linux/web_shortcuts/interactive.sh +7 -7
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +7 -7
- machineconfig/utils/installer_utils/installer_class.py +5 -6
- machineconfig/utils/ssh.py +1 -1
- {machineconfig-5.71.dist-info → machineconfig-5.72.dist-info}/METADATA +1 -1
- {machineconfig-5.71.dist-info → machineconfig-5.72.dist-info}/RECORD +17 -17
- {machineconfig-5.71.dist-info → machineconfig-5.72.dist-info}/WHEEL +0 -0
- {machineconfig-5.71.dist-info → machineconfig-5.72.dist-info}/entry_points.txt +0 -0
- {machineconfig-5.71.dist-info → machineconfig-5.72.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from typing import Literal, TypeAlias, Union
|
|
2
2
|
|
|
3
3
|
# AI/LLM Tools - AI-powered coding and chat assistants
|
|
4
|
-
|
|
4
|
+
BUNDLE_AI = [
|
|
5
5
|
"aider",
|
|
6
6
|
"github-copilot-cli",
|
|
7
7
|
"gemini",
|
|
@@ -244,15 +244,14 @@ PACKAGE_GROUPS: TypeAlias = Literal[
|
|
|
244
244
|
|
|
245
245
|
|
|
246
246
|
# Main ESSENTIAL package list - combines all subgroups
|
|
247
|
-
|
|
247
|
+
ESSENTIAL = [
|
|
248
248
|
*PACKAGES_CODE_ANALYSIS,
|
|
249
249
|
*PACKAGES_SYSTEM_MONITORS,
|
|
250
250
|
*PACKAGES_TERMINAL_SHELL,
|
|
251
251
|
*PACKAGES_FILE,
|
|
252
|
-
*
|
|
252
|
+
*BUNDLE_AI,
|
|
253
253
|
]
|
|
254
|
-
|
|
255
|
-
*PACKAGES_AI_TOOLS,
|
|
254
|
+
DEV = [
|
|
256
255
|
*PACKAGES_TERMINAL_EMULATORS,
|
|
257
256
|
*PACKAGES_BROWSERS,
|
|
258
257
|
*PACKAGES_CODE_EDITORS,
|
|
@@ -266,9 +265,9 @@ PACKAGES_NAMES_DEV = [
|
|
|
266
265
|
]
|
|
267
266
|
|
|
268
267
|
PACKAGE_GROUP2NAMES: dict[PACKAGE_GROUPS, list[str]] = {
|
|
269
|
-
"ESSENTIAL":
|
|
270
|
-
"DEV":
|
|
271
|
-
"AI_TOOLS":
|
|
268
|
+
"ESSENTIAL": ESSENTIAL,
|
|
269
|
+
"DEV": DEV,
|
|
270
|
+
"AI_TOOLS": BUNDLE_AI,
|
|
272
271
|
"TERMINAL_EMULATORS": PACKAGES_TERMINAL_EMULATORS,
|
|
273
272
|
"BROWSERS": PACKAGES_BROWSERS,
|
|
274
273
|
"CODE_EDITORS": PACKAGES_CODE_EDITORS,
|
|
@@ -63,10 +63,9 @@ except Exception as e:
|
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
def croshell(
|
|
66
|
+
path: Annotated[Optional[str], typer.Argument(help="read a file.")] = "",
|
|
66
67
|
python: Annotated[bool, typer.Option("--python", "-p", help="flag to use python over IPython.")] = False,
|
|
67
|
-
fzf: Annotated[bool, typer.Option("--fzf", "-F", help="search with fuzzy finder for python scripts and run them")] = False,
|
|
68
68
|
profile: Annotated[Optional[str], typer.Option("--profile", "-P", help="ipython profile to use, defaults to default profile.")] = None,
|
|
69
|
-
read: Annotated[str, typer.Option("--read", "-r", help="read a binary file.")] = "",
|
|
70
69
|
jupyter: Annotated[bool, typer.Option("--jupyter", "-j", help="run in jupyter interactive console")] = False,
|
|
71
70
|
streamlit_viewer: Annotated[bool, typer.Option("--stViewer", "-s", help="view in streamlit app")] = False,
|
|
72
71
|
visidata: Annotated[bool, typer.Option("--visidata", "-V", help="open data file in visidata")] = False,
|
|
@@ -79,7 +78,7 @@ def croshell(
|
|
|
79
78
|
ipython_profile: Optional[str] = profile
|
|
80
79
|
file_obj = PathExtended.cwd() # initialization value, could be modified according to args.
|
|
81
80
|
|
|
82
|
-
if
|
|
81
|
+
if path == ".":
|
|
83
82
|
text = "🔍 Searching for Python files..."
|
|
84
83
|
console.print(Panel(text, title="[bold blue]Info[/bold blue]"))
|
|
85
84
|
options = [str(item) for item in PathExtended.cwd().search("*.py", r=True)]
|
|
@@ -89,7 +88,7 @@ def croshell(
|
|
|
89
88
|
text = f"📄 Selected file: {PathExtended(file_selected).name}"
|
|
90
89
|
console.print(Panel(text, title="[bold blue]Info[/bold blue]"))
|
|
91
90
|
|
|
92
|
-
elif
|
|
91
|
+
elif path != "" and path is not None:
|
|
93
92
|
if streamlit_viewer:
|
|
94
93
|
# text = "📊 STARTING STREAMLIT VIEWER"
|
|
95
94
|
# console.print(Panel(text, title="[bold blue]Info[/bold blue]"))
|
|
@@ -101,7 +100,7 @@ def croshell(
|
|
|
101
100
|
# """
|
|
102
101
|
# PROGRAM_PATH.write_text(data=final_program, encoding="utf-8")
|
|
103
102
|
return None
|
|
104
|
-
file_obj = PathExtended(str(
|
|
103
|
+
file_obj = PathExtended(str(path).lstrip()).expanduser().absolute()
|
|
105
104
|
program = get_read_data_pycode(str(file_obj))
|
|
106
105
|
text = f"📄 Reading data from: {file_obj.name}"
|
|
107
106
|
console.print(Panel(text, title="[bold blue]Info[/bold blue]"))
|
|
@@ -150,7 +149,7 @@ from pathlib import Path
|
|
|
150
149
|
else:
|
|
151
150
|
console.print(Panel("❌ Could not determine the local machineconfig repo root. Please ensure the `REPO_ROOT` in `source_of_truth.py` is correctly set to the local path of the machineconfig repo, or do not use the `--local` flag.", title="Error", border_style="red"))
|
|
152
151
|
return
|
|
153
|
-
else: ve_line = """--with "machineconfig[plot]>=5.
|
|
152
|
+
else: ve_line = """--with "machineconfig[plot]>=5.72" """
|
|
154
153
|
fire_line = f"uv run --python 3.14 {ve_line} {interpreter} {interactivity} {profile} {str(pyfile)}"
|
|
155
154
|
|
|
156
155
|
from machineconfig.utils.code import run_shell_script
|
|
@@ -42,7 +42,7 @@ def path():
|
|
|
42
42
|
from pathlib import Path
|
|
43
43
|
path = Path(navigator.__file__).resolve().parent.joinpath("path_manager_tui.py")
|
|
44
44
|
from machineconfig.utils.code import run_shell_script
|
|
45
|
-
run_shell_script(f"""uv run --with "machineconfig>=5.
|
|
45
|
+
run_shell_script(f"""uv run --with "machineconfig>=5.72,textual" {path}""")
|
|
46
46
|
|
|
47
47
|
def pwsh_theme():
|
|
48
48
|
"""🔗 Select powershell prompt theme."""
|
|
@@ -25,9 +25,9 @@ def install():
|
|
|
25
25
|
# main_public_from_parser()
|
|
26
26
|
import platform
|
|
27
27
|
if platform.system() == "Windows":
|
|
28
|
-
run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=5.
|
|
28
|
+
run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=5.72""")
|
|
29
29
|
else:
|
|
30
|
-
run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=5.
|
|
30
|
+
run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=5.72""")
|
|
31
31
|
|
|
32
32
|
def navigate():
|
|
33
33
|
"""📚 NAVIGATE command structure with TUI"""
|
|
@@ -35,7 +35,7 @@ def navigate():
|
|
|
35
35
|
from pathlib import Path
|
|
36
36
|
path = Path(navigator.__file__).resolve().parent.joinpath("devops_navigator.py")
|
|
37
37
|
from machineconfig.utils.code import run_shell_script
|
|
38
|
-
run_shell_script(f"""uv run --with "machineconfig>=5.
|
|
38
|
+
run_shell_script(f"""uv run --with "machineconfig>=5.72,textual" {path}""")
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
def run_python(ip: str = typer.Argument(..., help="Python command to run in the machineconfig environment"),
|
|
@@ -130,9 +130,9 @@ def execute_installations(selected_options: list[str]) -> None:
|
|
|
130
130
|
console.print(Panel("🐍 [bold green]PYTHON ENVIRONMENT[/bold green]\n[italic]Virtual environment setup[/italic]", border_style="green"))
|
|
131
131
|
import platform
|
|
132
132
|
if platform.system() == "Windows":
|
|
133
|
-
run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=5.
|
|
133
|
+
run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=5.72""")
|
|
134
134
|
else:
|
|
135
|
-
run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=5.
|
|
135
|
+
run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=5.72""")
|
|
136
136
|
if "install_ssh_server" in selected_options:
|
|
137
137
|
console.print(Panel("🔒 [bold red]SSH SERVER[/bold red]\n[italic]Remote access setup[/italic]", border_style="red"))
|
|
138
138
|
import platform
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# mkdir ~/data/local
|
|
6
6
|
# sudo mount -o nolock,noatime,nodiratime,proto=tcp,timeo=600,retrans=2,noac alex-p51s-5:/home/alex/data/local ./data/local
|
|
7
7
|
|
|
8
|
-
uv run --python 3.14 --with "machineconfig>=5.
|
|
8
|
+
uv run --python 3.14 --with "machineconfig>=5.72" python -m machineconfig.scripts.python.mount_nfs
|
|
9
9
|
# Check if remote server is reachable and share folder exists
|
|
10
10
|
if ! ping -c 1 "$remote_server" &> /dev/null; then
|
|
11
11
|
echo "💥 Error: Remote server $remote_server is not reachable."
|
|
@@ -7,7 +7,7 @@ def analyze_repo_development(repo_path: str = typer.Argument(..., help="Path to
|
|
|
7
7
|
from pathlib import Path
|
|
8
8
|
count_lines_path = Path(count_lines.__file__)
|
|
9
9
|
# --project $HOME/code/ machineconfig --group plot
|
|
10
|
-
cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=5.
|
|
10
|
+
cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=5.72" {count_lines_path} analyze-over-time {repo_path}"""
|
|
11
11
|
from machineconfig.utils.code import run_shell_script
|
|
12
12
|
run_shell_script(cmd)
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ $user = ''
|
|
|
7
7
|
$sharePath = ''
|
|
8
8
|
$driveLetter = ''
|
|
9
9
|
|
|
10
|
-
uv run --python 3.14 --with "machineconfig>=5.
|
|
10
|
+
uv run --python 3.14 --with "machineconfig>=5.72" python -m machineconfig.scripts.python.mount_ssh
|
|
11
11
|
|
|
12
12
|
net use T: \\sshfs.kr\$user@$host.local
|
|
13
13
|
# this worked: net use T: \\sshfs\alex@alex-p51s-5.local
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
. <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/uv.sh")
|
|
3
3
|
devops() {
|
|
4
|
-
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.
|
|
4
|
+
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.72" devops "$@"
|
|
5
5
|
}
|
|
6
6
|
agents() {
|
|
7
|
-
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.
|
|
7
|
+
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.72" agents "$@"
|
|
8
8
|
}
|
|
9
9
|
cloud() {
|
|
10
|
-
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.
|
|
10
|
+
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.72" cloud "$@"
|
|
11
11
|
}
|
|
12
12
|
croshell() {
|
|
13
|
-
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.
|
|
13
|
+
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.72" croshell "$@"
|
|
14
14
|
}
|
|
15
15
|
fire() {
|
|
16
|
-
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.
|
|
16
|
+
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.72" fire "$@"
|
|
17
17
|
}
|
|
18
18
|
ftpx() {
|
|
19
|
-
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.
|
|
19
|
+
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.72" ftpx "$@"
|
|
20
20
|
}
|
|
21
21
|
sessions() {
|
|
22
|
-
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.
|
|
22
|
+
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.72" sessions "$@"
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
echo "devops command is now defined in this shell session."
|
|
@@ -2,30 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/uv.ps1").Content
|
|
4
4
|
function devops {
|
|
5
|
-
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.
|
|
5
|
+
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.72" devops $args
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
function cloud {
|
|
9
|
-
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.
|
|
9
|
+
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.72" cloud $args
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
function croshell {
|
|
13
|
-
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.
|
|
13
|
+
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.72" croshell $args
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
function agents {
|
|
17
|
-
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.
|
|
17
|
+
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.72" agents $args
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
function fire {
|
|
21
|
-
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.
|
|
21
|
+
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.72" fire $args
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
function ftpx {
|
|
25
|
-
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.
|
|
25
|
+
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.72" ftpx $args
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
function sessions {
|
|
29
|
-
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.
|
|
29
|
+
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.72" sessions $args
|
|
30
30
|
}
|
|
31
31
|
|
|
@@ -35,10 +35,9 @@ class Installer:
|
|
|
35
35
|
def install_robust(self, version: Optional[str]) -> str:
|
|
36
36
|
try:
|
|
37
37
|
exe_name = self._get_exe_name()
|
|
38
|
-
print(f"🚀 INSTALLING {exe_name.upper()} 🚀")
|
|
39
38
|
result_old = subprocess.run(f"{exe_name} --version", shell=True, capture_output=True, text=True)
|
|
40
39
|
old_version_cli = result_old.stdout.strip()
|
|
41
|
-
print(f"📊 Current version: {old_version_cli or 'Not installed'}")
|
|
40
|
+
print(f"🚀 INSTALLING {exe_name.upper()} 🚀. 📊 Current version: {old_version_cli or 'Not installed'}")
|
|
42
41
|
self.install(version=version)
|
|
43
42
|
result_new = subprocess.run(f"{exe_name} --version", shell=True, capture_output=True, text=True)
|
|
44
43
|
new_version_cli = result_new.stdout.strip()
|
|
@@ -69,15 +68,15 @@ class Installer:
|
|
|
69
68
|
print(f"🔧 INSTALLATION PROCESS: {exe_name} 🔧")
|
|
70
69
|
version_to_be_installed: str = "unknown" # Initialize to ensure it's always bound
|
|
71
70
|
if repo_url == "CMD":
|
|
72
|
-
if
|
|
71
|
+
if any(pm in installer_arch_os for pm in ["npm ", "pip ", "winget ", "brew ", "curl "]):
|
|
73
72
|
package_manager = installer_arch_os.split(" ", maxsplit=1)[0]
|
|
74
73
|
print(f"📦 Using package manager: {package_manager}")
|
|
75
74
|
desc = package_manager + " installation"
|
|
76
75
|
version_to_be_installed = package_manager + "Latest"
|
|
77
76
|
print(f"🚀 Running: {installer_arch_os}")
|
|
78
|
-
|
|
79
|
-
from machineconfig.utils.code import run_shell_script
|
|
80
|
-
result = run_shell_script(installer_arch_os)
|
|
77
|
+
result = subprocess.run(installer_arch_os, shell=True, capture_output=True, text=False)
|
|
78
|
+
# from machineconfig.utils.code import run_shell_script
|
|
79
|
+
# result = run_shell_script(installer_arch_os)
|
|
81
80
|
success = result.returncode == 0 and result.stderr == "".encode()
|
|
82
81
|
if not success:
|
|
83
82
|
print(f"❌ {desc} failed")
|
machineconfig/utils/ssh.py
CHANGED
|
@@ -6,7 +6,7 @@ from machineconfig.utils.terminal import Response, MACHINE
|
|
|
6
6
|
from machineconfig.utils.accessories import pprint
|
|
7
7
|
|
|
8
8
|
UV_RUN_CMD = "$HOME/.local/bin/uv run"
|
|
9
|
-
MACHINECONFIG_VERSION = """ "machineconfig>=5.
|
|
9
|
+
MACHINECONFIG_VERSION = """ "machineconfig>=5.72" """
|
|
10
10
|
DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
|
|
11
11
|
|
|
12
12
|
|
|
@@ -47,7 +47,7 @@ machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
47
47
|
machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
48
|
machineconfig/jobs/installer/check_installations.py,sha256=uFuxhgI8rIMtClcGmuc9gpG6iJ7X0__peGUQfGkreT8,10778
|
|
49
49
|
machineconfig/jobs/installer/installer_data.json,sha256=MuoXT1Ovl4-_pPSS-XxiUJ67ksWZvunUjXscyq4GnvI,74795
|
|
50
|
-
machineconfig/jobs/installer/package_groups.py,sha256=
|
|
50
|
+
machineconfig/jobs/installer/package_groups.py,sha256=i4z83F_rk7BVsrwFhz5Vn4SLF0IHxyQBFSxpAaZBl8M,5270
|
|
51
51
|
machineconfig/jobs/installer/custom/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
|
|
52
52
|
machineconfig/jobs/installer/custom/hx.py,sha256=YQClQXqWtGvon8BLFGf1Fp20JPkHgZeEZ6ebmCJQQfI,5838
|
|
53
53
|
machineconfig/jobs/installer/custom_dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -122,13 +122,13 @@ machineconfig/scripts/linux/other/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP
|
|
|
122
122
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
123
|
machineconfig/scripts/python/agents.py,sha256=PNjpI8ve_CP8Y091lWy5YbpI89ApOW1g47bnqXAMDFg,10339
|
|
124
124
|
machineconfig/scripts/python/cloud.py,sha256=_05zIiBzG4fKhFytg9mjvMBv4qMUtQJL0RtpYUJFZ3Y,920
|
|
125
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
125
|
+
machineconfig/scripts/python/croshell.py,sha256=DPrnIB_Nqg_rRXdZPXZTrfbHX5WmGrsMZzsxEoX1xYo,7083
|
|
126
126
|
machineconfig/scripts/python/devops.py,sha256=f9Tc2EQNO1sImE1J6Vp4HlvPozMlgbtO1t84l8knr40,2050
|
|
127
127
|
machineconfig/scripts/python/devops_navigator.py,sha256=4O9_-ACeP748NcMjWQXZF7mBQpMPxqCGhLvPG3DMi4Q,236
|
|
128
128
|
machineconfig/scripts/python/entry.py,sha256=0D6xAXpB5aNZ_fyKKr3oXVuiRgZqHUUkbTCHJnq0SLM,1481
|
|
129
129
|
machineconfig/scripts/python/fire_jobs.py,sha256=O5DrckUGLxGblOcLf_iXU31pmCSpTg-c0hQZxQKD1os,13591
|
|
130
130
|
machineconfig/scripts/python/ftpx.py,sha256=UBDP6IIfWkaML1uZT1FrfGUUy_Of5LI82IdqEzo05_U,9760
|
|
131
|
-
machineconfig/scripts/python/interactive.py,sha256=
|
|
131
|
+
machineconfig/scripts/python/interactive.py,sha256=TBUfE-oCyPYq9XVxVEoqqhrFoS2lCfd2nRG5maP4QeI,11790
|
|
132
132
|
machineconfig/scripts/python/sessions.py,sha256=91eqV7SMemOZDuIQMqz36-AFbrpvPLbVdR6BZppY1xA,9559
|
|
133
133
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
134
|
machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
|
|
@@ -171,12 +171,12 @@ machineconfig/scripts/python/croshell_helpers/start_slidev.py,sha256=HfJReOusTPh
|
|
|
171
171
|
machineconfig/scripts/python/croshell_helpers/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
172
172
|
machineconfig/scripts/python/croshell_helpers/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
173
173
|
machineconfig/scripts/python/devops_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
-
machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=
|
|
174
|
+
machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=Dbg1qQHq1lNoYC9wEKq19k1zaJSUeCxa8ceTEPwkSKY,5333
|
|
175
175
|
machineconfig/scripts/python/devops_helpers/cli_config_dotfile.py,sha256=rjTys4FNf9_feP9flWM7Zvq17dxWmetSiGaHPxp25nk,2737
|
|
176
176
|
machineconfig/scripts/python/devops_helpers/cli_data.py,sha256=kvJ7g2CccjjXIhCwdu_Vlif8JHC0qUoLjuGcTSqT-IU,514
|
|
177
177
|
machineconfig/scripts/python/devops_helpers/cli_nw.py,sha256=U-W6ox-7ctGqQcjFWsDwZKmqQdl1etz9CMOes-B0Wgc,2959
|
|
178
178
|
machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=IgyntAJ-qIEnaet3bnhhRg6SI519FgGWDBoQ6mLE7ZQ,12016
|
|
179
|
-
machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=
|
|
179
|
+
machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=2NBu4nDISsd-l34D8kZBUt04n09kdl_w2J57A1Fd-rA,3790
|
|
180
180
|
machineconfig/scripts/python/devops_helpers/cli_share_server.py,sha256=285OzxttCx7YsrpOkaapMKP1eVGHmG5TkkaSQnY7i3c,3976
|
|
181
181
|
machineconfig/scripts/python/devops_helpers/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
|
|
182
182
|
machineconfig/scripts/python/devops_helpers/devops_add_identity.py,sha256=wvjNgqsLmqD2SxbNCW_usqfp0LI-TDvcJJKGOWt2oFw,3775
|
|
@@ -223,7 +223,7 @@ machineconfig/scripts/python/helpers_repos/grource.py,sha256=IywQ1NDPcLXM5Tr9xhm
|
|
|
223
223
|
machineconfig/scripts/python/helpers_repos/secure_repo.py,sha256=G_quiKOLNkWD5UG8ekexgh9xbpW4Od-J1pLJbLLWnpg,993
|
|
224
224
|
machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
225
|
machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
|
|
226
|
-
machineconfig/scripts/python/nw/mount_nfs,sha256=
|
|
226
|
+
machineconfig/scripts/python/nw/mount_nfs,sha256=g5vtvHopepusp-4u2x9dSUe5Xo9vPqIqQJtIGNY9jfY,1855
|
|
227
227
|
machineconfig/scripts/python/nw/mount_nfs.py,sha256=lOMDY4RS7tx8gsCazVR5tNNwFbaRyO2PJlnwBCDQgCM,3573
|
|
228
228
|
machineconfig/scripts/python/nw/mount_nw_drive,sha256=BqjGBCbwe5ZAsZDO3L0zHhh_gJfZy1CYOcqXA4Y-WkQ,2262
|
|
229
229
|
machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
|
|
@@ -235,7 +235,7 @@ machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=1ab9l-8MtAxofW5nG
|
|
|
235
235
|
machineconfig/scripts/python/repos_helpers/action.py,sha256=t6x9K43Uy7r5aRpdODfsN-5UoMrYXEG2cVw-Y8l9prw,14847
|
|
236
236
|
machineconfig/scripts/python/repos_helpers/clone.py,sha256=9vGb9NCXT0lkerPzOJjmFfhU8LSzE-_1LDvjkhgnal0,5461
|
|
237
237
|
machineconfig/scripts/python/repos_helpers/count_lines.py,sha256=ZLEajCLmlFFY969BehabqGOB9_kkpATO3Lt09L7KULk,15968
|
|
238
|
-
machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=
|
|
238
|
+
machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=lN6_P5S0aQTVxddp9EVxDTYbbilo5NJ4cO1nvr8GSP0,568
|
|
239
239
|
machineconfig/scripts/python/repos_helpers/entrypoint.py,sha256=C-_D03abE0TkVCJ4jZoliUMAhRRkZ77mcwMoPOuieJQ,2827
|
|
240
240
|
machineconfig/scripts/python/repos_helpers/record.py,sha256=3T5VmMbvywScZhTW2j4cGLK0T2LSWxKfnXkRTxkuLP4,10994
|
|
241
241
|
machineconfig/scripts/python/repos_helpers/sync.py,sha256=CLLWy2n2gY9beXPF-mblOQ6R7cKoenkJjMiX7tHQsBk,3091
|
|
@@ -248,7 +248,7 @@ machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqk
|
|
|
248
248
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
249
249
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
250
250
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
251
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
251
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=6lJRZ3GENlAK51S8piQj0kGz1_etSUKskEIT15berao,322
|
|
252
252
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
253
253
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
254
254
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -363,7 +363,7 @@ machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKG
|
|
|
363
363
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
364
364
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
365
365
|
machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
366
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
366
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=yXjczeP-w9vUH2Smb-2hH_QIo8pnd0yrFb1Llbd5YuE,880
|
|
367
367
|
machineconfig/setup_windows/__init__.py,sha256=NnSVZkIBoxoMgkj-_KAqGonH3YziBIWXOKDEcmNAGTY,386
|
|
368
368
|
machineconfig/setup_windows/apps.ps1,sha256=G5GqZ9G0aiQr_A-HaahtRdzpaTTdW6n3DRKMZWDTSPc,11214
|
|
369
369
|
machineconfig/setup_windows/uv.ps1,sha256=mzkFJUQ57dukVQtY7WqAQIVUDMcixnkir8aNM_TYrl4,350
|
|
@@ -373,7 +373,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
|
|
|
373
373
|
machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
|
|
374
374
|
machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
|
|
375
375
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
376
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
376
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=7zZ-_N4t-_XAF5tkZfEd5DzpKYAe3VXyKf-5miPtJgk,919
|
|
377
377
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
378
378
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
379
379
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -391,7 +391,7 @@ machineconfig/utils/procs.py,sha256=w75oGKfR7FpT1pGTGd2XscnEOO0IHBWxohLbi69hLqg,
|
|
|
391
391
|
machineconfig/utils/scheduler.py,sha256=jZ_1yghqA3-aINPRmE_76gboqJc0UElroR7urNOfXKs,14940
|
|
392
392
|
machineconfig/utils/scheduling.py,sha256=RF1iXJpqf4Dg18jdZWtBixz97KAHC6VKYqTFSpdLWuc,11188
|
|
393
393
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
394
|
-
machineconfig/utils/ssh.py,sha256=
|
|
394
|
+
machineconfig/utils/ssh.py,sha256=HuDfIo6yo6NC5FmsxelSNAVu8LJm9Zl7JQialTpmV94,37564
|
|
395
395
|
machineconfig/utils/terminal.py,sha256=IlmOByfQG-vjhaFFxxzU5rWzP5_qUzmalRfuey3PAmc,11801
|
|
396
396
|
machineconfig/utils/upgrade_packages.py,sha256=H96zVJEWXJW07nh5vhjuSCrPtXGqoUb7xeJsFYYdmCI,3330
|
|
397
397
|
machineconfig/utils/ve.py,sha256=L-6PBXnQGXThiwWgheJMQoisAZOZA6SVCbGw2J-GFnI,2414
|
|
@@ -409,14 +409,14 @@ machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQ
|
|
|
409
409
|
machineconfig/utils/installer_utils/github_release_bulk.py,sha256=WJf_qZlF02SmIc6C7o1h4Gy4gAaJAfeAS8O9s2Itj-k,6535
|
|
410
410
|
machineconfig/utils/installer_utils/installer.py,sha256=bWFSIW05hDo6p1BsNqK-yCQL5ZNU_eZxCQW1QLLc-SA,9759
|
|
411
411
|
machineconfig/utils/installer_utils/installer_abc.py,sha256=ZoMtINHD9cHEu4R5SYUWgHLTAqo4F2a33pBrEOGX4zs,11693
|
|
412
|
-
machineconfig/utils/installer_utils/installer_class.py,sha256=
|
|
412
|
+
machineconfig/utils/installer_utils/installer_class.py,sha256=ito54iZYFx676PkQBC2vlBRzYSgpBnVvi6Gsc7OX-wY,18337
|
|
413
413
|
machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=Xbi59rU35AzR7HZZ8ZQ8aUu_FjSgijNqc8Sme0rCk2Y,2050
|
|
414
414
|
machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
|
|
415
415
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
416
416
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
417
417
|
machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
418
|
-
machineconfig-5.
|
|
419
|
-
machineconfig-5.
|
|
420
|
-
machineconfig-5.
|
|
421
|
-
machineconfig-5.
|
|
422
|
-
machineconfig-5.
|
|
418
|
+
machineconfig-5.72.dist-info/METADATA,sha256=gIpJdHmf_qd0R896FrLjO7KHLTKjvhAOdb1s0mQmmBk,3103
|
|
419
|
+
machineconfig-5.72.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
420
|
+
machineconfig-5.72.dist-info/entry_points.txt,sha256=M0jwN_brZdXWhmNVeXLvdKxfkv8WhhXFZYcuKBA9qnk,418
|
|
421
|
+
machineconfig-5.72.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
422
|
+
machineconfig-5.72.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|