machineconfig 6.92__py3-none-any.whl → 6.94__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/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/helpers_devops/cli_config.py +1 -1
- machineconfig/scripts/python/helpers_devops/cli_self.py +3 -3
- machineconfig/scripts/python/helpers_devops/cli_share_server.py +50 -27
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +1 -1
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/setup_linux/web_shortcuts/interactive.sh +1 -1
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +1 -1
- machineconfig/utils/ssh.py +1 -1
- machineconfig/utils/upgrade_packages.py +54 -8
- {machineconfig-6.92.dist-info → machineconfig-6.94.dist-info}/METADATA +1 -1
- {machineconfig-6.92.dist-info → machineconfig-6.94.dist-info}/RECORD +15 -15
- {machineconfig-6.92.dist-info → machineconfig-6.94.dist-info}/WHEEL +0 -0
- {machineconfig-6.92.dist-info → machineconfig-6.94.dist-info}/entry_points.txt +0 -0
- {machineconfig-6.92.dist-info → machineconfig-6.94.dist-info}/top_level.txt +0 -0
|
@@ -46,7 +46,7 @@ def path():
|
|
|
46
46
|
uv_with = ["textual"]
|
|
47
47
|
uv_project_dir = None
|
|
48
48
|
if not Path.home().joinpath("code/machineconfig").exists():
|
|
49
|
-
uv_with.append("machineconfig>=6.
|
|
49
|
+
uv_with.append("machineconfig>=6.94")
|
|
50
50
|
else:
|
|
51
51
|
uv_project_dir = str(Path.home().joinpath("code/machineconfig"))
|
|
52
52
|
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])
|
|
@@ -48,9 +48,9 @@ def install(no_copy_assets: Annotated[bool, typer.Option("--no-assets-copy", "-n
|
|
|
48
48
|
else:
|
|
49
49
|
import platform
|
|
50
50
|
if platform.system() == "Windows":
|
|
51
|
-
run_shell_script(r"""& "$HOME\.local\bin\uv.exe" tool install --upgrade "machineconfig>=6.
|
|
51
|
+
run_shell_script(r"""& "$HOME\.local\bin\uv.exe" tool install --upgrade "machineconfig>=6.94" """)
|
|
52
52
|
else:
|
|
53
|
-
run_shell_script("""$HOME/.local/bin/uv tool install --upgrade "machineconfig>=6.
|
|
53
|
+
run_shell_script("""$HOME/.local/bin/uv tool install --upgrade "machineconfig>=6.94" """)
|
|
54
54
|
from machineconfig.profile.create_shell_profile import create_default_shell_profile
|
|
55
55
|
if not no_copy_assets:
|
|
56
56
|
create_default_shell_profile() # involves copying assets too
|
|
@@ -75,7 +75,7 @@ def navigate():
|
|
|
75
75
|
path = Path(navigator.__file__).resolve().parent.joinpath("devops_navigator.py")
|
|
76
76
|
from machineconfig.utils.code import run_shell_script
|
|
77
77
|
if Path.home().joinpath("code/machineconfig").exists(): executable = f"""--project "{str(Path.home().joinpath("code/machineconfig"))}" --with textual"""
|
|
78
|
-
else: executable = """--with "machineconfig>=6.
|
|
78
|
+
else: executable = """--with "machineconfig>=6.94,textual" """
|
|
79
79
|
run_shell_script(f"""uv run {executable} {path}""")
|
|
80
80
|
|
|
81
81
|
|
|
@@ -96,40 +96,66 @@ def main(
|
|
|
96
96
|
p.wait()
|
|
97
97
|
|
|
98
98
|
|
|
99
|
-
def share_file_send(path: Annotated[str, typer.Argument(help="Path to the file or directory to send")]
|
|
99
|
+
def share_file_send(path: Annotated[str, typer.Argument(help="Path to the file or directory to send")],
|
|
100
|
+
zip_folder: Annotated[bool, typer.Option("--zip", help="Zip folder before sending")] = False,
|
|
101
|
+
code: Annotated[str | None, typer.Option("--code", "-c", help="Codephrase used to connect to relay")] = None,
|
|
102
|
+
text: Annotated[str | None, typer.Option("--text", "-t", help="Send some text")] = None,
|
|
103
|
+
qrcode: Annotated[bool, typer.Option("--qrcode", "--qr", help="Show receive code as a qrcode")] = False,
|
|
104
|
+
) -> None:
|
|
100
105
|
"""Send a file using croc with relay server."""
|
|
101
106
|
from machineconfig.utils.installer_utils.installer import install_if_missing
|
|
102
107
|
install_if_missing(which="croc")
|
|
103
108
|
# Get relay server IP from environment or use default
|
|
104
109
|
import socket
|
|
110
|
+
import platform
|
|
105
111
|
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
106
112
|
s.connect(('8.8.8.8',80))
|
|
107
113
|
local_ip_v4 = s.getsockname()[0]
|
|
108
114
|
s.close()
|
|
109
115
|
relay_port = "443"
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
116
|
+
is_windows = platform.system() == "Windows"
|
|
117
|
+
|
|
118
|
+
# Build command parts
|
|
119
|
+
relay_arg = f"--relay {local_ip_v4}:{relay_port} --ip {local_ip_v4}:{relay_port}"
|
|
120
|
+
zip_arg = "--zip" if zip_folder else ""
|
|
121
|
+
text_arg = f"--text '{text}'" if text else ""
|
|
122
|
+
qrcode_arg = "--qrcode" if qrcode else ""
|
|
123
|
+
path_arg = f"{path}" if not text else ""
|
|
124
|
+
|
|
125
|
+
if is_windows:
|
|
126
|
+
# Windows PowerShell format
|
|
127
|
+
code_arg = f"--code {code}" if code else ""
|
|
128
|
+
script = f"""croc {relay_arg} send {zip_arg} {code_arg} {qrcode_arg} {text_arg} {path_arg}"""
|
|
129
|
+
else:
|
|
130
|
+
# Linux/macOS Bash format
|
|
131
|
+
if code:
|
|
132
|
+
script = f"""export CROC_SECRET="{code}"
|
|
133
|
+
croc {relay_arg} send {zip_arg} {qrcode_arg} {text_arg} {path_arg}"""
|
|
134
|
+
else:
|
|
135
|
+
script = f"""croc {relay_arg} send {zip_arg} {qrcode_arg} {text_arg} {path_arg}"""
|
|
136
|
+
|
|
137
|
+
typer.echo(f"🚀 Sending file: {path}. Use: devops network receive")
|
|
138
|
+
from machineconfig.utils.code import run_shell_script
|
|
139
|
+
run_shell_script(script=script, display_script=True, clean_env=False)
|
|
114
140
|
|
|
115
141
|
|
|
116
|
-
def share_file_receive(
|
|
142
|
+
def share_file_receive(code_args: Annotated[list[str], typer.Argument(help="Receive code or full relay command. Examples: '7121-donor-olympic-bicycle' or '--relay 10.17.62.206:443 0782-paris-pencil-torso'")],) -> None:
|
|
117
143
|
"""Receive a file using croc with relay server.
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
144
|
+
Usage examples:
|
|
145
|
+
devops network receive 7121-donor-olympic-bicycle
|
|
146
|
+
devops network receive --relay 10.17.62.206:443 0782-paris-pencil-torso
|
|
147
|
+
devops network receive -- --relay 10.17.62.206:443 0782-paris-pencil-torso
|
|
148
|
+
"""
|
|
123
149
|
from machineconfig.utils.installer_utils.installer import install_if_missing
|
|
124
150
|
install_if_missing(which="croc")
|
|
125
|
-
import subprocess
|
|
126
|
-
import os
|
|
127
151
|
import platform
|
|
128
152
|
import re
|
|
129
153
|
|
|
130
|
-
env = os.environ.copy()
|
|
131
154
|
is_windows = platform.system() == "Windows"
|
|
132
155
|
|
|
156
|
+
# Join all arguments back into a single string
|
|
157
|
+
code = " ".join(code_args)
|
|
158
|
+
|
|
133
159
|
# Parse input to extract components
|
|
134
160
|
secret_code: str | None = None
|
|
135
161
|
relay_server: str | None = None
|
|
@@ -154,22 +180,19 @@ On the other computer run:
|
|
|
154
180
|
if not secret_code:
|
|
155
181
|
raise ValueError(f"Could not parse croc code from input: {code}")
|
|
156
182
|
|
|
157
|
-
# Build the appropriate
|
|
183
|
+
# Build the appropriate script for current OS
|
|
158
184
|
if is_windows:
|
|
159
|
-
# Windows format: croc --relay server:port secret-code --yes
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
cmd += f" --relay {relay_server}"
|
|
163
|
-
cmd += f" {secret_code} --yes"
|
|
185
|
+
# Windows PowerShell format: croc --relay server:port secret-code --yes
|
|
186
|
+
relay_arg = f"--relay {relay_server}" if relay_server else ""
|
|
187
|
+
script = f"""croc {relay_arg} {secret_code} --yes"""
|
|
164
188
|
else:
|
|
165
|
-
# Linux/macOS format: CROC_SECRET="secret-code" croc --relay server:port --yes
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
cmd += f" --relay {relay_server}"
|
|
170
|
-
cmd += " --yes"
|
|
189
|
+
# Linux/macOS Bash format: CROC_SECRET="secret-code" croc --relay server:port --yes
|
|
190
|
+
relay_arg = f"--relay {relay_server}" if relay_server else ""
|
|
191
|
+
script = f"""export CROC_SECRET="{secret_code}"
|
|
192
|
+
croc {relay_arg} --yes"""
|
|
171
193
|
|
|
172
|
-
|
|
194
|
+
from machineconfig.utils.code import run_shell_script
|
|
195
|
+
run_shell_script(script=script, display_script=True, clean_env=False)
|
|
173
196
|
|
|
174
197
|
|
|
175
198
|
def get_share_file_app():
|
|
@@ -7,7 +7,7 @@ $user = ''
|
|
|
7
7
|
$sharePath = ''
|
|
8
8
|
$driveLetter = ''
|
|
9
9
|
|
|
10
|
-
uv run --python 3.14 --with "machineconfig>=6.
|
|
10
|
+
uv run --python 3.14 --with "machineconfig>=6.94" 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,7 +1,7 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
. <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/uv.sh")
|
|
3
3
|
mcfg() {
|
|
4
|
-
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=6.
|
|
4
|
+
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=6.94" mcfg "$@"
|
|
5
5
|
}
|
|
6
6
|
alias d="mcfg devops"
|
|
7
7
|
alias c="mcfg cloud"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/uv.ps1").Content
|
|
4
4
|
function mcfg {
|
|
5
|
-
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=6.
|
|
5
|
+
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=6.94" mcfg $args
|
|
6
6
|
}
|
|
7
7
|
function d { mcfg devops @args }
|
|
8
8
|
function c { mcfg 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>=6.
|
|
11
|
+
MACHINECONFIG_VERSION = "machineconfig>=6.94"
|
|
12
12
|
DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
|
|
13
13
|
|
|
14
14
|
class SSH:
|
|
@@ -93,13 +93,59 @@ def extract_package_name(dependency_spec: str) -> str:
|
|
|
93
93
|
return dependency_spec.strip()
|
|
94
94
|
|
|
95
95
|
|
|
96
|
-
|
|
96
|
+
def upgrade_machine_config_version() -> None:
|
|
97
|
+
"""
|
|
98
|
+
Upgrade machineconfig version in pyproject.toml and all source files.
|
|
99
|
+
|
|
100
|
+
Reads current version from pyproject.toml, bumps it by 0.01, and replaces
|
|
101
|
+
all occurrences of machineconfig>={old_version} with the new version in
|
|
102
|
+
Python (.py), shell (.sh), and PowerShell (.ps1) files.
|
|
103
|
+
"""
|
|
97
104
|
current_dir: Path = Path.cwd()
|
|
98
105
|
pyproject_file: Path = current_dir / "pyproject.toml"
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
+
|
|
107
|
+
# Read current version from pyproject.toml
|
|
108
|
+
with open(pyproject_file, "rb") as f:
|
|
109
|
+
pyproject_data: dict[str, Any] = tomllib.load(f)
|
|
110
|
+
|
|
111
|
+
current_version_str: str = pyproject_data["project"]["version"]
|
|
112
|
+
version_parts: list[str] = current_version_str.split(".")
|
|
113
|
+
major: int = int(version_parts[0])
|
|
114
|
+
minor: int = int(version_parts[1])
|
|
115
|
+
|
|
116
|
+
# Bump minor version by 1
|
|
117
|
+
new_minor: int = minor + 1
|
|
118
|
+
new_version: str = f"{major}.{new_minor}"
|
|
119
|
+
|
|
120
|
+
old_version_constraint: str = f"machineconfig>={current_version_str}"
|
|
121
|
+
new_version_constraint: str = f"machineconfig>={new_version}"
|
|
122
|
+
|
|
123
|
+
print(f"Upgrading from {current_version_str} to {new_version}")
|
|
124
|
+
|
|
125
|
+
# Update pyproject.toml
|
|
126
|
+
content: str = pyproject_file.read_text(encoding="utf-8")
|
|
127
|
+
updated_content: str = content.replace(f'version = "{current_version_str}"', f'version = "{new_version}"')
|
|
128
|
+
pyproject_file.write_text(updated_content, encoding="utf-8")
|
|
129
|
+
print(f"Updated pyproject.toml: {current_version_str} -> {new_version}")
|
|
130
|
+
|
|
131
|
+
# Find all Python files and replace version constraints
|
|
132
|
+
py_files: list[Path] = list(current_dir.glob("**/*.py")) + list(current_dir.glob("**/*.sh")) + list(current_dir.glob("**/*.ps1"))
|
|
133
|
+
|
|
134
|
+
files_updated: int = 0
|
|
135
|
+
for file_path in py_files:
|
|
136
|
+
try:
|
|
137
|
+
file_content: str = file_path.read_text(encoding="utf-8")
|
|
138
|
+
if old_version_constraint in file_content:
|
|
139
|
+
updated_file_content: str = file_content.replace(old_version_constraint, new_version_constraint)
|
|
140
|
+
file_path.write_text(updated_file_content, encoding="utf-8")
|
|
141
|
+
files_updated += 1
|
|
142
|
+
print(f"Updated {file_path.relative_to(current_dir)}")
|
|
143
|
+
except (UnicodeDecodeError, PermissionError):
|
|
144
|
+
# Skip files that can't be read as text
|
|
145
|
+
pass
|
|
146
|
+
|
|
147
|
+
print(f"Updated {files_updated} files with version constraint")
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
if __name__ == "__main__":
|
|
151
|
+
upgrade_machine_config_version()
|
|
@@ -162,7 +162,7 @@ machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1
|
|
|
162
162
|
machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
163
163
|
machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
|
|
164
164
|
machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
|
|
165
|
-
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=
|
|
165
|
+
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=wehHjXu809TojdrxARCiSyL0CIpcRIVcBsHIpWB7hOE,6932
|
|
166
166
|
machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
167
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=YD6-rtudHNip8tx85amSmOZZIHBP9khq4az3dF41j6U,5934
|
|
168
168
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
@@ -192,13 +192,13 @@ machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=HfJReOusTPh
|
|
|
192
192
|
machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
193
193
|
machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
194
194
|
machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
|
-
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=
|
|
195
|
+
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=QIezP-D1niaA-Y2y21GB6Yl1cBgPxDs4IF5DFQ5joyg,7222
|
|
196
196
|
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=dduLPmaxOU9eOOy76QTG8Yzi5WQdewbiJ8X615Z19wk,2487
|
|
197
197
|
machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
|
|
198
198
|
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=9NcVJvPYaUDtmI_DSKthZxR4emMBeNWVM_M5f0YR8EQ,7302
|
|
199
199
|
machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=Xwkv1adqHZvTfRSPWiqSK3PZ1XADyx3llw_YkbxaKyE,12505
|
|
200
|
-
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=
|
|
201
|
-
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=
|
|
200
|
+
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=g5hN0CVtzVKjOmCEIR3eB3crrWVuo0k5rVWXq1D9scY,6621
|
|
201
|
+
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=EetHlPLszDOzbtRsmGVbnSX4_YfH8H6dVKGroMqEwfc,9480
|
|
202
202
|
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
|
|
203
203
|
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=B9pnosujOxZLpwzJO4YAqeO-2rvvOFIZgrUwGREZXfM,11118
|
|
204
204
|
machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Dn8luB6QJzxKiiFSC-NMqiYddWZoca3A8eOjMYZDzTc,5598
|
|
@@ -225,7 +225,7 @@ machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wd
|
|
|
225
225
|
machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
|
|
226
226
|
machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
|
|
227
227
|
machineconfig/scripts/python/helpers_repos/clone.py,sha256=UULEG5xJuXlPGU0nqXH6U45jA9DOFqLw8B4iPytCwOQ,5471
|
|
228
|
-
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=
|
|
228
|
+
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=GmnyzhCi5AKoQ5JLzVZOGj0PG4NY5ZeSK5GJpT3NEJ0,10450
|
|
229
229
|
machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
|
|
230
230
|
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=vSDtrF4829jziwp6WZmGt9G8MJ9jY4hfXqtf0vhkYSE,607
|
|
231
231
|
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=WYEFGUJp9HWImlFjbs_hiFZrUqM_KEYm5VvSUjWd04I,2810
|
|
@@ -260,7 +260,7 @@ machineconfig/scripts/windows/term.ps1,sha256=nme_OWis84qN-zI2c0rdysNcDIdoaEKajX
|
|
|
260
260
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
261
261
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
262
262
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
263
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
263
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=jo__p4JSS7MPjm9oR5rChkosmVtRpygdMtguWcTl_0c,322
|
|
264
264
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
265
265
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
266
266
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -378,7 +378,7 @@ machineconfig/setup_linux/others/cli_installation.sh,sha256=gVvszYZJgKPRJx2SEaE3
|
|
|
378
378
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
379
379
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
380
380
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
381
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
381
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=DfVsJoJob1pb4IwXdaSJiy7ZIta0_ObDQtQVvbBMFOM,488
|
|
382
382
|
machineconfig/setup_mac/__init__.py,sha256=Q1waupi5vCBroLqc8Rtnw69_7jLnm2Cs7_zH_GSZgMs,616
|
|
383
383
|
machineconfig/setup_mac/apps.sh,sha256=R0N6fBwLCzwy4qAormyMerXXXrHazibSkY6NrNOpTQU,2772
|
|
384
384
|
machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
|
|
@@ -393,7 +393,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
|
|
|
393
393
|
machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
|
|
394
394
|
machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
|
|
395
395
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
396
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
396
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=lt4lBMVQOjf5mVQAF_1Dw7pksvAQzVn7omjJlcs-LfE,616
|
|
397
397
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
398
398
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
399
399
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -411,10 +411,10 @@ machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,
|
|
|
411
411
|
machineconfig/utils/scheduler.py,sha256=fguwvINyaupOxdU5Uadyxalh_jXTXDzt0ioEgjEOKcM,14705
|
|
412
412
|
machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
|
|
413
413
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
414
|
-
machineconfig/utils/ssh.py,sha256=
|
|
414
|
+
machineconfig/utils/ssh.py,sha256=u1nUqAGVewmt9qlO2jN138iHZqrN8I9Twzks6rsXv_c,39008
|
|
415
415
|
machineconfig/utils/terminal.py,sha256=VDgsjTjBmMGgZN0YIc0pJ8YksLDrBtiXON1EThy7_is,4264
|
|
416
416
|
machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
|
|
417
|
-
machineconfig/utils/upgrade_packages.py,sha256=
|
|
417
|
+
machineconfig/utils/upgrade_packages.py,sha256=i7K2bpmwdmag833t1ZmYvF45rO8GMkmJvLP3C1AyNEI,5694
|
|
418
418
|
machineconfig/utils/ve.py,sha256=L-6PBXnQGXThiwWgheJMQoisAZOZA6SVCbGw2J-GFnI,2414
|
|
419
419
|
machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
420
420
|
machineconfig/utils/cloud/onedrive/README.md,sha256=i20oRG110AN0yLF3DARHfWXDJjPBiSgWI8CP2HQAqrk,3774
|
|
@@ -440,8 +440,8 @@ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoS
|
|
|
440
440
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
441
441
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
442
442
|
machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
|
-
machineconfig-6.
|
|
444
|
-
machineconfig-6.
|
|
445
|
-
machineconfig-6.
|
|
446
|
-
machineconfig-6.
|
|
447
|
-
machineconfig-6.
|
|
443
|
+
machineconfig-6.94.dist-info/METADATA,sha256=uUhn2KRXBQmb1iH4rQaWyu-wO_ZaG39Gg1UxxPtTyRc,2928
|
|
444
|
+
machineconfig-6.94.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
445
|
+
machineconfig-6.94.dist-info/entry_points.txt,sha256=uf_ZPJa02_y3Fw5Z7m22cq7PwxhYd1QV2FfPNZTl_dQ,519
|
|
446
|
+
machineconfig-6.94.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
447
|
+
machineconfig-6.94.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|