machineconfig 7.50__py3-none-any.whl → 7.51__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/utils/maker.py +2 -2
- machineconfig/jobs/installer/custom/hx.py +1 -0
- machineconfig/profile/create_links_export.py +14 -5
- machineconfig/scripts/python/croshell.py +4 -4
- machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/ftpx.py +4 -2
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py +0 -12
- machineconfig/scripts/python/helpers_devops/cli_config.py +1 -1
- machineconfig/scripts/python/helpers_devops/cli_self.py +3 -3
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +1 -1
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/settings/shells/nushell/init.nu +2 -2
- machineconfig/settings/shells/zsh/init.sh +1 -1
- machineconfig/settings/yazi/keymap_windows.toml +0 -1
- machineconfig/setup_linux/web_shortcuts/interactive.sh +10 -10
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +10 -10
- machineconfig/utils/ssh.py +1 -1
- {machineconfig-7.50.dist-info → machineconfig-7.51.dist-info}/METADATA +1 -1
- {machineconfig-7.50.dist-info → machineconfig-7.51.dist-info}/RECORD +23 -23
- {machineconfig-7.50.dist-info → machineconfig-7.51.dist-info}/WHEEL +0 -0
- {machineconfig-7.50.dist-info → machineconfig-7.51.dist-info}/entry_points.txt +0 -0
- {machineconfig-7.50.dist-info → machineconfig-7.51.dist-info}/top_level.txt +0 -0
|
@@ -20,10 +20,10 @@ def get_fire_tab_using_fire(func: FunctionType):
|
|
|
20
20
|
from machineconfig.utils.source_of_truth import CONFIG_ROOT
|
|
21
21
|
import platform
|
|
22
22
|
if platform.system().lower() == "windows":
|
|
23
|
-
wrap_mcfg = CONFIG_ROOT / "scripts/
|
|
23
|
+
wrap_mcfg = CONFIG_ROOT / "scripts/wrap_mcfg.ps1"
|
|
24
24
|
wrap_mcfg = f'& "{wrap_mcfg}"'
|
|
25
25
|
elif platform.system().lower() == "linux" or platform.system().lower() == "darwin":
|
|
26
|
-
wrap_mcfg = CONFIG_ROOT / "scripts/
|
|
26
|
+
wrap_mcfg = CONFIG_ROOT / "scripts/wrap_mcfg"
|
|
27
27
|
else:
|
|
28
28
|
raise ValueError(f"Unsupported platform: {platform.system()}")
|
|
29
29
|
path = Path(inspect.getfile(func))
|
|
@@ -58,6 +58,7 @@ def main(installer_data: InstallerData, version: Optional[str], install_lib: boo
|
|
|
58
58
|
raise FileNotFoundError(f"Could not find 'hx' executable in {downloaded.name}")
|
|
59
59
|
|
|
60
60
|
assert len(hx_file_search) == 1, f"Expected 1 'hx' executable, found {len(hx_file_search)}"
|
|
61
|
+
|
|
61
62
|
hx_file = hx_file_search[0]
|
|
62
63
|
contrib = hx_file.parent / "contrib"
|
|
63
64
|
runtime = contrib.parent / "runtime"
|
|
@@ -59,22 +59,31 @@ def main_public_from_parser(method: Annotated[Literal["symlink", "s", "copy", "c
|
|
|
59
59
|
|
|
60
60
|
def main_private_from_parser(method: Annotated[Literal["symlink", "s", "copy", "c"], typer.Option(..., help="Method to use for linking files")],
|
|
61
61
|
on_conflict: Annotated[ON_CONFLICT_LOOSE, typer.Option(..., help="Action to take on conflict")] = "throw-error",
|
|
62
|
-
which: Annotated[Optional[str], typer.Option(..., help="Specific items to process")] = None,
|
|
63
|
-
interactive: Annotated[bool, typer.Option(..., help="Run in interactive mode")] = False):
|
|
62
|
+
which: Annotated[Optional[str], typer.Option(..., "--which", "-w", help="Specific items to process")] = None,
|
|
63
|
+
interactive: Annotated[bool, typer.Option(..., "--interactive", "-i", help="Run in interactive mode")] = False):
|
|
64
64
|
from machineconfig.profile.create_links import ConfigMapper, read_mapper
|
|
65
65
|
mapper_full = read_mapper()["private"]
|
|
66
66
|
if which is None:
|
|
67
|
-
|
|
67
|
+
if interactive is False:
|
|
68
|
+
typer.echo("[red]Error:[/] --which must be provided when not running in interactive mode.")
|
|
69
|
+
typer.Exit(code=1)
|
|
70
|
+
return
|
|
68
71
|
from machineconfig.utils.options import choose_from_options
|
|
69
72
|
items_chosen = choose_from_options(msg="Which symlink to create?", options=list(mapper_full.keys()), fzf=True, multi=True)
|
|
70
73
|
else:
|
|
71
|
-
|
|
74
|
+
if interactive is True:
|
|
75
|
+
typer.echo("[yellow]Warning:[/] --which is provided, but its not allowed to be used together with --interactive. Ignoring --interactive flag.")
|
|
76
|
+
typer.Exit(code=0)
|
|
77
|
+
return
|
|
72
78
|
if which == "all":
|
|
73
79
|
items_chosen = list(mapper_full.keys())
|
|
74
80
|
else:
|
|
75
81
|
items_chosen = which.split(",")
|
|
76
82
|
items_objections: dict[str, list[ConfigMapper]] = {item: mapper_full[item] for item in items_chosen if item in mapper_full}
|
|
77
|
-
|
|
83
|
+
if len(items_objections) == 0:
|
|
84
|
+
typer.echo("[red]Error:[/] No valid items selected.")
|
|
85
|
+
typer.Exit(code=1)
|
|
86
|
+
return
|
|
78
87
|
from machineconfig.profile.create_links import apply_mapper
|
|
79
88
|
method_map: dict[str, Literal["symlink", "copy"]] = {
|
|
80
89
|
"s": "symlink",
|
|
@@ -130,7 +130,7 @@ def croshell(
|
|
|
130
130
|
fire_line = f"uv run --python 3.14 --with visidata,pyarrow vd {str(file_obj)}"
|
|
131
131
|
elif marimo:
|
|
132
132
|
if Path.home().joinpath("code/machineconfig").exists(): requirements = f"""--with marimo --project "{str(Path.home().joinpath("code/machineconfig"))}" """
|
|
133
|
-
else: requirements = """--python 3.14 --with "marimo,machineconfig[plot]>=7.
|
|
133
|
+
else: requirements = """--python 3.14 --with "marimo,machineconfig[plot]>=7.51" """
|
|
134
134
|
fire_line = f"""
|
|
135
135
|
cd {str(pyfile.parent)}
|
|
136
136
|
uv run --python 3.14 --with "marimo" marimo convert {pyfile.name} -o marimo_nb.py
|
|
@@ -138,14 +138,14 @@ uv run {requirements} marimo edit --host 0.0.0.0 marimo_nb.py
|
|
|
138
138
|
"""
|
|
139
139
|
elif jupyter:
|
|
140
140
|
if Path.home().joinpath("code/machineconfig").exists(): requirements = f"""--project "{str(Path.home().joinpath("code/machineconfig"))}" --with jupyterlab """
|
|
141
|
-
else: requirements = """--with "machineconfig[plot]>=7.
|
|
141
|
+
else: requirements = """--with "machineconfig[plot]>=7.51" """
|
|
142
142
|
fire_line = f"uv run {requirements} jupyter-lab {str(nb_target)}"
|
|
143
143
|
elif vscode:
|
|
144
144
|
fire_line = f"""
|
|
145
145
|
cd {str(pyfile.parent)}
|
|
146
146
|
uv init --python 3.14
|
|
147
147
|
uv venv
|
|
148
|
-
uv add "machineconfig[plot]>=7.
|
|
148
|
+
uv add "machineconfig[plot]>=7.51"
|
|
149
149
|
# code serve-web
|
|
150
150
|
code --new-window {str(pyfile)}
|
|
151
151
|
"""
|
|
@@ -153,7 +153,7 @@ code --new-window {str(pyfile)}
|
|
|
153
153
|
if interpreter == "ipython": profile = f" --profile {ipython_profile} --no-banner"
|
|
154
154
|
else: profile = ""
|
|
155
155
|
if Path.home().joinpath("code/machineconfig").exists(): ve_line = f"""--project "{str(Path.home().joinpath("code/machineconfig"))}" """
|
|
156
|
-
else: ve_line = """--python 3.14 --with "machineconfig[plot]>=7.
|
|
156
|
+
else: ve_line = """--python 3.14 --with "machineconfig[plot]>=7.51" """
|
|
157
157
|
# ve_path_maybe, ipython_profile_maybe = get_ve_path_and_ipython_profile(Path.cwd())
|
|
158
158
|
# --python 3.14
|
|
159
159
|
fire_line = f"uv run {ve_line} {interpreter} {interactivity} {profile} {str(pyfile)}"
|
|
@@ -145,8 +145,10 @@ def ftpx(
|
|
|
145
145
|
received_file = PathExtended(resolved_target) # type: ignore
|
|
146
146
|
else:
|
|
147
147
|
if source_is_remote:
|
|
148
|
-
|
|
149
|
-
❌ Path Error: Source must be a remote path (machine:path)"""
|
|
148
|
+
if resolved_source is None:
|
|
149
|
+
typer.echo("""❌ Path Error: Source must be a remote path (machine:path)""")
|
|
150
|
+
typer.Exit(code=1)
|
|
151
|
+
return
|
|
150
152
|
target_display = resolved_target or "<auto>"
|
|
151
153
|
console.print(
|
|
152
154
|
Panel(
|
|
@@ -5,22 +5,10 @@ from machineconfig.scripts.python.helpers_agents.fire_agents_helper_types import
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
def fire_qwen(ai_spec: AI_SPEC, prompt_path: Path, repo_root: Path, config_dir: str | None) -> str:
|
|
8
|
-
# assert model == "qwen", "Only qwen is supported currently."
|
|
9
|
-
# assert provider == "qwen", "Only qwen is supported currently."
|
|
10
|
-
# model = "qwen"
|
|
11
|
-
# model = "gemini-2.5-flash-lite"
|
|
12
|
-
# model = None # auto-select
|
|
13
|
-
# if model is None:
|
|
14
|
-
# model_arg = ""
|
|
15
|
-
# else:
|
|
16
8
|
_ = ai_spec["provider"]
|
|
17
|
-
# model_arg = f"--model {shlex.quote(model)}"
|
|
18
|
-
# Need a real shell for the pipeline; otherwise '| gemini ...' is passed as args to 'cat'
|
|
19
9
|
safe_path = shlex.quote(str(prompt_path))
|
|
20
|
-
|
|
21
10
|
match ai_spec["machine"]:
|
|
22
11
|
case "local":
|
|
23
|
-
# Export the environment variable so it's available to subshells
|
|
24
12
|
cmd = f"""
|
|
25
13
|
qwen --yolo --prompt {safe_path}
|
|
26
14
|
"""
|
|
@@ -29,7 +29,7 @@ def path():
|
|
|
29
29
|
uv_with = ["textual"]
|
|
30
30
|
uv_project_dir = None
|
|
31
31
|
if not Path.home().joinpath("code/machineconfig").exists():
|
|
32
|
-
uv_with.append("machineconfig>=7.
|
|
32
|
+
uv_with.append("machineconfig>=7.51")
|
|
33
33
|
else:
|
|
34
34
|
uv_project_dir = str(Path.home().joinpath("code/machineconfig"))
|
|
35
35
|
run_shell_script(get_uv_command_executing_python_script(python_script=path.read_text(encoding="utf-8"), uv_with=uv_with, uv_project_dir=uv_project_dir)[0])
|
|
@@ -46,9 +46,9 @@ def install(no_copy_assets: Annotated[bool, typer.Option("--no-assets-copy", "-n
|
|
|
46
46
|
else:
|
|
47
47
|
import platform
|
|
48
48
|
if platform.system() == "Windows":
|
|
49
|
-
run_shell_script(r"""& "$HOME\.local\bin\uv.exe" tool install --upgrade "machineconfig>=7.
|
|
49
|
+
run_shell_script(r"""& "$HOME\.local\bin\uv.exe" tool install --upgrade "machineconfig>=7.51" """)
|
|
50
50
|
else:
|
|
51
|
-
run_shell_script("""$HOME/.local/bin/uv tool install --upgrade "machineconfig>=7.
|
|
51
|
+
run_shell_script("""$HOME/.local/bin/uv tool install --upgrade "machineconfig>=7.51" """)
|
|
52
52
|
from machineconfig.profile.create_shell_profile import create_default_shell_profile
|
|
53
53
|
if not no_copy_assets:
|
|
54
54
|
create_default_shell_profile() # involves copying assets too
|
|
@@ -73,7 +73,7 @@ def navigate():
|
|
|
73
73
|
path = Path(navigator.__file__).resolve().parent.joinpath("devops_navigator.py")
|
|
74
74
|
from machineconfig.utils.code import run_shell_script
|
|
75
75
|
if Path.home().joinpath("code/machineconfig").exists(): executable = f"""--project "{str(Path.home().joinpath("code/machineconfig"))}" --with textual"""
|
|
76
|
-
else: executable = """--with "machineconfig>=7.
|
|
76
|
+
else: executable = """--with "machineconfig>=7.51,textual" """
|
|
77
77
|
run_shell_script(f"""uv run {executable} {path}""")
|
|
78
78
|
|
|
79
79
|
|
|
@@ -99,7 +99,7 @@ git pull originEnc master
|
|
|
99
99
|
uv_project_dir = f"""{str(Path.home().joinpath("code/machineconfig"))}"""
|
|
100
100
|
uv_with = None
|
|
101
101
|
else:
|
|
102
|
-
uv_with = ["machineconfig>=7.
|
|
102
|
+
uv_with = ["machineconfig>=7.51"]
|
|
103
103
|
uv_project_dir = None
|
|
104
104
|
|
|
105
105
|
import tempfile
|
|
@@ -8,7 +8,7 @@ def analyze_repo_development(repo_path: Annotated[str, typer.Argument(..., help=
|
|
|
8
8
|
from pathlib import Path
|
|
9
9
|
count_lines_path = Path(count_lines.__file__)
|
|
10
10
|
# --project $HOME/code/ machineconfig --group plot
|
|
11
|
-
cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=7.
|
|
11
|
+
cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=7.51" {count_lines_path} analyze-over-time {repo_path}"""
|
|
12
12
|
from machineconfig.utils.code import run_shell_script
|
|
13
13
|
run_shell_script(cmd)
|
|
14
14
|
|
|
@@ -7,7 +7,7 @@ $user = ''
|
|
|
7
7
|
$sharePath = ''
|
|
8
8
|
$driveLetter = ''
|
|
9
9
|
|
|
10
|
-
uv run --python 3.14 --with "machineconfig>=7.
|
|
10
|
+
uv run --python 3.14 --with "machineconfig>=7.51" 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
|
|
@@ -31,11 +31,11 @@ export-env {
|
|
|
31
31
|
let config_root = $"($env.HOME)/.config/machineconfig"
|
|
32
32
|
load-env { CONFIG_ROOT: $config_root }
|
|
33
33
|
|
|
34
|
-
let new_path = (add_to_path_if_not_already $"($config_root)/scripts
|
|
34
|
+
let new_path = (add_to_path_if_not_already $"($config_root)/scripts" $"($env.HOME)/dotfiles/scripts/linux" "/usr/local/bin")
|
|
35
35
|
load-env { PATH: $new_path }
|
|
36
36
|
|
|
37
37
|
# Source external scripts and define aliases
|
|
38
|
-
if ($"($config_root)/scripts
|
|
38
|
+
if ($"($config_root)/scripts" | path exists) {
|
|
39
39
|
# Source helper scripts
|
|
40
40
|
# let broot_script = ($config_root | path join "settings" "broot" "brootcd.nu")
|
|
41
41
|
# let lf_script = ($config_root | path join "settings" "lf" "linux" "lfcd.nu")
|
|
@@ -57,7 +57,7 @@ alias r='wrap_in_shell_script croshell'
|
|
|
57
57
|
alias u='wrap_in_shell_script utils'
|
|
58
58
|
alias t='wrap_in_shell_script terminal'
|
|
59
59
|
alias ms='wrap_in_shell_script msearch'
|
|
60
|
-
alias x='. $CONFIG_ROOT/scripts/
|
|
60
|
+
alias x='. $CONFIG_ROOT/scripts/wrap_mcfg explore'
|
|
61
61
|
|
|
62
62
|
# alias gcs='gh copilot suggest -t shell'
|
|
63
63
|
# alias gcg='gh copilot suggest -t git'
|
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
. <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/uv.sh")
|
|
3
3
|
. <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/scripts/linux/wrap_mcfg")
|
|
4
4
|
|
|
5
|
-
alias devops='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
6
|
-
alias cloud='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
7
|
-
alias agents='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
8
|
-
alias sessions='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
9
|
-
alias ftpx='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
10
|
-
alias fire='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
11
|
-
alias croshell='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
12
|
-
alias utils='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
13
|
-
alias terminal='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
14
|
-
alias msearch='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
5
|
+
alias devops='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.51" devops'
|
|
6
|
+
alias cloud='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.51" cloud'
|
|
7
|
+
alias agents='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.51" agents'
|
|
8
|
+
alias sessions='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.51" sessions'
|
|
9
|
+
alias ftpx='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.51" ftpx'
|
|
10
|
+
alias fire='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.51" fire'
|
|
11
|
+
alias croshell='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.51" croshell'
|
|
12
|
+
alias utils='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.51" utils'
|
|
13
|
+
alias terminal='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.51" terminal'
|
|
14
|
+
alias msearch='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.51" msearch'
|
|
15
15
|
|
|
16
16
|
alias d='wrap_in_shell_script devops'
|
|
17
17
|
alias c='wrap_in_shell_script cloud'
|
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/uv.ps1").Content
|
|
4
4
|
iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/scripts/windows/wrap_mcfg.ps1").Content
|
|
5
5
|
|
|
6
|
-
function devops { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
7
|
-
function cloud { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
8
|
-
function agents { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
9
|
-
function sessions { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
10
|
-
function ftpx { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
11
|
-
function fire { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
12
|
-
function croshell { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
13
|
-
function utils { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
14
|
-
function terminal { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
15
|
-
function msearch { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
6
|
+
function devops { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.51" devops $args }
|
|
7
|
+
function cloud { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.51" cloud $args }
|
|
8
|
+
function agents { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.51" agents $args }
|
|
9
|
+
function sessions { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.51" sessions $args }
|
|
10
|
+
function ftpx { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.51" ftpx $args }
|
|
11
|
+
function fire { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.51" fire $args }
|
|
12
|
+
function croshell { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.51" croshell $args }
|
|
13
|
+
function utils { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.51" utils $args }
|
|
14
|
+
function terminal { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.51" terminal $args }
|
|
15
|
+
function msearch { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.51" msearch $args }
|
|
16
16
|
|
|
17
17
|
function d { wrap_in_shell_script devops @args }
|
|
18
18
|
function c { wrap_in_shell_script cloud @args }
|
machineconfig/utils/ssh.py
CHANGED
|
@@ -8,7 +8,7 @@ from machineconfig.utils.terminal import Response
|
|
|
8
8
|
from machineconfig.utils.accessories import pprint, randstr
|
|
9
9
|
from machineconfig.utils.meta import lambda_to_python_script
|
|
10
10
|
UV_RUN_CMD = "$HOME/.local/bin/uv run" if platform.system() != "Windows" else """& "$env:USERPROFILE/.local/bin/uv" run"""
|
|
11
|
-
MACHINECONFIG_VERSION = "machineconfig>=7.
|
|
11
|
+
MACHINECONFIG_VERSION = "machineconfig>=7.51"
|
|
12
12
|
DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
|
|
13
13
|
|
|
14
14
|
class SSH:
|
|
@@ -25,7 +25,7 @@ machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=xzih0y8_
|
|
|
25
25
|
machineconfig/cluster/sessions_managers/helpers/enhanced_command_runner.py,sha256=YULt8r3zotkotjdmWRrUq3yGySZW-5e_rQSIZ-IMvjk,5410
|
|
26
26
|
machineconfig/cluster/sessions_managers/helpers/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
|
|
27
27
|
machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=Y4RQmhROY6o7JXSJXRrBTkoAuEmu1gvmvN_7JKPw5sc,3178
|
|
28
|
-
machineconfig/cluster/sessions_managers/utils/maker.py,sha256=
|
|
28
|
+
machineconfig/cluster/sessions_managers/utils/maker.py,sha256=QBzzTGK9_KcfxvXd2IdUZANtejBeypcWUl6w-jtUDCM,2657
|
|
29
29
|
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=OA50j16uUS9ZTjL38TLuR3jufIOln_EszMZpbWyejTo,6972
|
|
30
30
|
machineconfig/cluster/sessions_managers/wt_utils/manager_persistence.py,sha256=LWgK-886QMERLRJwQ4rH2Nr2RGlyKu6P7JYoBMVWMGc,1604
|
|
31
31
|
machineconfig/cluster/sessions_managers/wt_utils/monitoring_helpers.py,sha256=e75rdp0G8cDfF9SfkJ7LX3TAJ8R3JWR5v-C_SDkDa14,1627
|
|
@@ -55,7 +55,7 @@ machineconfig/jobs/installer/installer_data.json,sha256=WJ0v1f86duVBp945xm52m7-m
|
|
|
55
55
|
machineconfig/jobs/installer/package_groups.py,sha256=nRru-M8wiqdSs3U8TDOGFmA2xTV4gwFUeMJZ28xBrvw,5293
|
|
56
56
|
machineconfig/jobs/installer/custom/boxes.py,sha256=ws8QRbDn48oKhbQntr54I0nSfkwINbprjTy0HOpuX40,1974
|
|
57
57
|
machineconfig/jobs/installer/custom/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
|
|
58
|
-
machineconfig/jobs/installer/custom/hx.py,sha256=
|
|
58
|
+
machineconfig/jobs/installer/custom/hx.py,sha256=8Vy7NNCiXsyG_xl78TAYPYpiISNCDFiVJJRSZceq1Fk,8729
|
|
59
59
|
machineconfig/jobs/installer/custom_dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
60
|
machineconfig/jobs/installer/custom_dev/alacritty.py,sha256=STXertp5pE6VVhcjAfZSKBxAC94S2HAzas646jwd4ow,2754
|
|
61
61
|
machineconfig/jobs/installer/custom_dev/brave.py,sha256=kHgGRwgKrvpIlGzmdnWO6HJnSrnj8RlBEV_1Zz4s_Hw,2829
|
|
@@ -95,7 +95,7 @@ machineconfig/profile/backup.toml,sha256=Hb25sIdKVvLqOF62NgiOpGZxd45I6IhsNHu623R
|
|
|
95
95
|
machineconfig/profile/bash_shell_profiles.md,sha256=mio0xkMTwO-F3fikWIfgcdQaPCmQrmkxJMNtZsTe9TI,514
|
|
96
96
|
machineconfig/profile/create_helper.py,sha256=jBwgf2r6Wid9LNXw_O8JpVmm7Vk5sZJWlN0qeIkQhjE,2986
|
|
97
97
|
machineconfig/profile/create_links.py,sha256=42U5dEu7fMnGBAqyhQ1VspFaZg3VssMMQSdpGEmpHnE,14199
|
|
98
|
-
machineconfig/profile/create_links_export.py,sha256=
|
|
98
|
+
machineconfig/profile/create_links_export.py,sha256=vApd2YoFqqN9om8cvcyeAVOz1rvbOl9YDJg4WfhlaHM,4976
|
|
99
99
|
machineconfig/profile/create_shell_profile.py,sha256=jjCwH3rNxVOcb9sgbZQsjYlKGfqhDvPxBDrkFLThT3c,7221
|
|
100
100
|
machineconfig/profile/mapper.toml,sha256=FaB07P-558XAycqLLc17O0rT098lMPh3ILH7UgoauXQ,12793
|
|
101
101
|
machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
|
|
@@ -114,13 +114,13 @@ machineconfig/scripts/nu/wrap_mcfg.nu,sha256=9heiUHVkHjI_AMXT5QJJixk7ZK_hJNV_A8l
|
|
|
114
114
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
115
|
machineconfig/scripts/python/agents.py,sha256=aVbLQDgpngXZm4taHcED4sAxyHvV2_Dz5VW3apPcQcY,10651
|
|
116
116
|
machineconfig/scripts/python/cloud.py,sha256=yAD6ciKiEtv2CH3g2NScDK5cpCZQi7Vu8yyeehw_cU8,1263
|
|
117
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
117
|
+
machineconfig/scripts/python/croshell.py,sha256=2vSm3z9_E3KNFa4l94aFNXL1-y0SaoqKfq_qY-yPOSE,8379
|
|
118
118
|
machineconfig/scripts/python/define.py,sha256=AtuVac6tJeDMcxtbWmQh1TH3dYAPSGFdO51b75zJVeI,717
|
|
119
119
|
machineconfig/scripts/python/devops.py,sha256=Lv4d-UlyOREj4VTcu_pxswYo54Mawe3XGeKjreGQDYg,2222
|
|
120
120
|
machineconfig/scripts/python/devops_navigator.py,sha256=5Cm384D4S8_GsvMzTwr0C16D0ktf8_5Mk5bEJncwDO8,237
|
|
121
121
|
machineconfig/scripts/python/explore.py,sha256=3kNglM1KYp57U8yrbWeHEslN458-xieRuFYsJAhrpIs,1247
|
|
122
122
|
machineconfig/scripts/python/fire_jobs.py,sha256=r_V5ZpZhE2-Hn_f5pvzbulUTl7_2S4AI_M71WlD4Vlw,13701
|
|
123
|
-
machineconfig/scripts/python/ftpx.py,sha256=
|
|
123
|
+
machineconfig/scripts/python/ftpx.py,sha256=8tmhKBZgSuhFZZYaT4JAIgeXMKmxJhxg5aJQFbbdtDg,9857
|
|
124
124
|
machineconfig/scripts/python/interactive.py,sha256=jFHpiQq_lisa51BS4-qUlWPJ1-pmHmPAfA6dixdsOzY,11745
|
|
125
125
|
machineconfig/scripts/python/machineconfig.py,sha256=l211lxHRcQ6BH7x3FwQHSJCYbYs6RJL5e0POjyWAW9A,3048
|
|
126
126
|
machineconfig/scripts/python/msearch.py,sha256=3NbwJFJtrvPSVyOfa6ogPjD-NVuRJHeAQ1WriDXCduU,737
|
|
@@ -159,7 +159,7 @@ machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1
|
|
|
159
159
|
machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
160
160
|
machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
|
|
161
161
|
machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
|
|
162
|
-
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=
|
|
162
|
+
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=ZcdyhdiQnDys8HxFRLOMQrnGYbHl0AMHBGs-Kg4uoRE,6932
|
|
163
163
|
machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
164
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=YD6-rtudHNip8tx85amSmOZZIHBP9khq4az3dF41j6U,5934
|
|
165
165
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
@@ -170,7 +170,7 @@ machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.json,s
|
|
|
170
170
|
machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.py,sha256=QcHVXodLRqso1Y71AhN06hfOckCQfDZfiCkaipOJyA8,1754
|
|
171
171
|
machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_cursor_agents.py,sha256=4LD841Qk9PRP6I97oNlV_twixoERg4IVdZjvy49mGVk,529
|
|
172
172
|
machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_gemini.py,sha256=6FHDONsdvEjA97ZIB7sWP6w2TgjzheW7YEF95xDnc_A,1518
|
|
173
|
-
machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py,sha256=
|
|
173
|
+
machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py,sha256=ZOicLX5WbIiXLu6rEvGjAwtRgFg5ejZ6QilCdFwBIus,1125
|
|
174
174
|
machineconfig/scripts/python/helpers_agents/templates/prompt.txt,sha256=sX7Fh_hxaazNw-cv9hIw_XdL6WTcsiG53ILwoyZWv5o,257
|
|
175
175
|
machineconfig/scripts/python/helpers_agents/templates/template.ps1,sha256=9F7h9NMIJisunMIii2wETpgonQmiGLHLHfWg9k_QWKo,859
|
|
176
176
|
machineconfig/scripts/python/helpers_agents/templates/template.sh,sha256=RJRw5xZv0-NGJkKeuOiEeXFiaZ07RJJUlttJfs7il90,986
|
|
@@ -189,12 +189,12 @@ machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=HfJReOusTPh
|
|
|
189
189
|
machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
190
190
|
machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
191
191
|
machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
192
|
-
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=
|
|
192
|
+
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=Of2qPQ5RKGpxXXX6orlWSXQ4DLTnIy227oRgq_zAuOs,5922
|
|
193
193
|
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=SL6P3Ioib3P9OWG1GmULb5-l4ySYZ1RuuIDCHY4lCyU,3502
|
|
194
194
|
machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
|
|
195
195
|
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=u_2l5Cc3dFnh0seKrbH9j-Z0bUCrgy45MOM6HCjgkQg,7562
|
|
196
196
|
machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=mFrhosIFCCT70d82NYUxp9ta6BYeAHQNhsx7CEmWcg4,12478
|
|
197
|
-
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=
|
|
197
|
+
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=sBfwq7uAwqV0vxINKc7G4Sx6JklYsvK4sTfXfoJ7KSM,6515
|
|
198
198
|
machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=AL04784ncdP9ue5bKyqJfXrMksxjFKtuv_w353kQQsI,6298
|
|
199
199
|
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=S2xQ7sDVvfvGKcJNlquXj9Gc0ofk2EXnfvpRx2AWVD8,6278
|
|
200
200
|
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
|
|
@@ -231,9 +231,9 @@ machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wd
|
|
|
231
231
|
machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
|
|
232
232
|
machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
|
|
233
233
|
machineconfig/scripts/python/helpers_repos/clone.py,sha256=UULEG5xJuXlPGU0nqXH6U45jA9DOFqLw8B4iPytCwOQ,5471
|
|
234
|
-
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=
|
|
234
|
+
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=Ew2L4VZ8Syk9DDjc8qXGb1KCvvFTOXAP8k82wtLyMQA,11271
|
|
235
235
|
machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
|
|
236
|
-
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=
|
|
236
|
+
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=LF4FgllgNp456OAlio2jaBbedB4CUzaZU1Ou2fyfY2c,607
|
|
237
237
|
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=WYEFGUJp9HWImlFjbs_hiFZrUqM_KEYm5VvSUjWd04I,2810
|
|
238
238
|
machineconfig/scripts/python/helpers_repos/grource.py,sha256=lHxyfsIQr4pbu71Ekqu-9nohR7LXbN2wufw7LPTyOgM,14639
|
|
239
239
|
machineconfig/scripts/python/helpers_repos/record.py,sha256=FQo0swuJZOp0I2XGK-t1OQU4zJHmQ2z9zTpDD30Tmg4,11001
|
|
@@ -261,7 +261,7 @@ machineconfig/scripts/windows/wrap_mcfg.ps1,sha256=tFCj4wK7B35Uf6kdGCRV7EIr1xZFT
|
|
|
261
261
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
262
262
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
263
263
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
264
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
264
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=2dJEvmiFE_38wPJeGFbPmBMvgN7anT5_g0B1omfyrAc,322
|
|
265
265
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
266
266
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
267
267
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -342,14 +342,14 @@ machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=OJ3
|
|
|
342
342
|
machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmgGiS-CI-_-lFvhD5A4,52870
|
|
343
343
|
machineconfig/settings/shells/nushell/config.nu,sha256=5eN9S7BL9MbznZEwqk2bxcYXzWlaF_g-9JL4tw0pp4E,78
|
|
344
344
|
machineconfig/settings/shells/nushell/env.nu,sha256=4VmaXb-qP6qnMD5TPzkXMLFNlB5QC4l9HEzCvXZE2GQ,315
|
|
345
|
-
machineconfig/settings/shells/nushell/init.nu,sha256=
|
|
345
|
+
machineconfig/settings/shells/nushell/init.nu,sha256=D-X3qvpCStAZtloZzjVF796ug99SgXpm0aljqyWrYv0,4566
|
|
346
346
|
machineconfig/settings/shells/pwsh/init.ps1,sha256=T0Zw9mfQa8rgDTxRk40UbzBq-7gkMgINAC7Or5W4HIY,2926
|
|
347
347
|
machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
348
|
machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
|
|
349
349
|
machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
|
|
350
350
|
machineconfig/settings/shells/wezterm/wezterm.lua,sha256=ZaUFqVNibGD5cyzlnYhIMAakTig6P7qggi5hvHGASPk,6210
|
|
351
351
|
machineconfig/settings/shells/wt/settings.json,sha256=Nzk9IpD-Bp36wKJAgG7XAa0GVwW3I29xNjUW5AYfxEI,10599
|
|
352
|
-
machineconfig/settings/shells/zsh/init.sh,sha256=
|
|
352
|
+
machineconfig/settings/shells/zsh/init.sh,sha256=LcT8AOecHoCtmmkXkSlAROJy-xD1re6wvPEIEzgPN5U,3054
|
|
353
353
|
machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
|
|
354
354
|
machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
|
|
355
355
|
machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
|
|
@@ -360,7 +360,7 @@ machineconfig/settings/tmux/.tmux.conf,sha256=55qyCgKHOyg70kJ42GXrHwqAAtRtnsWtdH
|
|
|
360
360
|
machineconfig/settings/wsl/.wslconfig,sha256=wL4oWxRw_0vLQXheSLNuGUQqypqEKlVqYALosPI9jhY,1279
|
|
361
361
|
machineconfig/settings/yazi/init.lua,sha256=fW_FIMNSh8mFGMYqwPerr61HJYMNQJfeKMWzoaVpFKs,892
|
|
362
362
|
machineconfig/settings/yazi/keymap_linux.toml,sha256=DFLc_KcyaskQT26Y5eNsvUOPbQeShURbmilyew-8ctI,1982
|
|
363
|
-
machineconfig/settings/yazi/keymap_windows.toml,sha256=
|
|
363
|
+
machineconfig/settings/yazi/keymap_windows.toml,sha256=i8tWQwpvA7XE2DAKbjKaaUigsT5hmNqK9OipcgIOZDo,2023
|
|
364
364
|
machineconfig/settings/yazi/theme.toml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
365
|
machineconfig/settings/yazi/yazi.toml,sha256=KRGbjMkCmbCdTRxEXJXd5gI1kTEQK7VtDGm1MXsOJDw,234
|
|
366
366
|
machineconfig/settings/yazi/shell/yazi_cd.ps1,sha256=gvXZyD2Csil8KjaMtrx5ZkF9AqRt0LaVfTL724vxMCE,312
|
|
@@ -385,7 +385,7 @@ machineconfig/setup_linux/others/cli_installation.sh,sha256=gVvszYZJgKPRJx2SEaE3
|
|
|
385
385
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
386
386
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
387
387
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
388
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
388
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=T20CfLq7Rs018slMTkAQFJN3uTlI5gPt4o2VmW-mJjI,1581
|
|
389
389
|
machineconfig/setup_mac/__init__.py,sha256=Q1waupi5vCBroLqc8Rtnw69_7jLnm2Cs7_zH_GSZgMs,616
|
|
390
390
|
machineconfig/setup_mac/apps.sh,sha256=R0N6fBwLCzwy4qAormyMerXXXrHazibSkY6NrNOpTQU,2772
|
|
391
391
|
machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
|
|
@@ -400,7 +400,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
|
|
|
400
400
|
machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
|
|
401
401
|
machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
|
|
402
402
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
403
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256
|
|
403
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=2ck9333VNdtp3iMvGCgURF0Q45g7MEcjKlV6jmEks08,1916
|
|
404
404
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
405
405
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
406
406
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -418,7 +418,7 @@ machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,
|
|
|
418
418
|
machineconfig/utils/scheduler.py,sha256=fguwvINyaupOxdU5Uadyxalh_jXTXDzt0ioEgjEOKcM,14705
|
|
419
419
|
machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
|
|
420
420
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
421
|
-
machineconfig/utils/ssh.py,sha256=
|
|
421
|
+
machineconfig/utils/ssh.py,sha256=JRXbxNejCpWl2ESLf9TmuKtNy9jZ7YeW1N3LS58fPJ8,39274
|
|
422
422
|
machineconfig/utils/terminal.py,sha256=VDgsjTjBmMGgZN0YIc0pJ8YksLDrBtiXON1EThy7_is,4264
|
|
423
423
|
machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
|
|
424
424
|
machineconfig/utils/upgrade_packages.py,sha256=e4iJn_9vL2zCJxAR2dhKJjM0__ALKgI5yB1uBRxSjhQ,6994
|
|
@@ -447,8 +447,8 @@ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoS
|
|
|
447
447
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
448
448
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
449
449
|
machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
450
|
-
machineconfig-7.
|
|
451
|
-
machineconfig-7.
|
|
452
|
-
machineconfig-7.
|
|
453
|
-
machineconfig-7.
|
|
454
|
-
machineconfig-7.
|
|
450
|
+
machineconfig-7.51.dist-info/METADATA,sha256=_O1tnZBQLOXzZC7BQPtsf3KQpKiJybXhOnVu_4aFL3Y,3396
|
|
451
|
+
machineconfig-7.51.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
452
|
+
machineconfig-7.51.dist-info/entry_points.txt,sha256=_JNgkzaa_gVAWyZ6UwPwXXQqURRSvAGhrVQ1RiU2sHc,746
|
|
453
|
+
machineconfig-7.51.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
454
|
+
machineconfig-7.51.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|