machineconfig 7.58__py3-none-any.whl → 7.60__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 +7 -5
- machineconfig/jobs/installer/custom/boxes.py +2 -2
- machineconfig/jobs/installer/custom/hx.py +3 -3
- machineconfig/jobs/installer/custom_dev/cloudflare_warp_cli.py +23 -0
- machineconfig/jobs/installer/custom_dev/dubdb_adbc.py +1 -1
- machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +1 -1
- machineconfig/jobs/installer/custom_dev/sysabc.py +9 -27
- machineconfig/jobs/installer/custom_dev/wezterm.py +0 -4
- machineconfig/jobs/installer/installer_data.json +57 -23
- machineconfig/jobs/installer/package_groups.py +20 -13
- machineconfig/scripts/python/croshell.py +4 -4
- machineconfig/scripts/python/devops.py +2 -3
- machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/helpers_croshell/crosh.py +2 -2
- machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +4 -5
- machineconfig/scripts/python/helpers_devops/cli_self.py +3 -3
- machineconfig/scripts/python/helpers_devops/cli_share_file.py +2 -2
- machineconfig/scripts/python/helpers_devops/cli_share_server.py +1 -1
- machineconfig/scripts/python/helpers_devops/cli_terminal.py +1 -1
- machineconfig/scripts/python/helpers_devops/cli_utils.py +0 -72
- machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py +4 -4
- machineconfig/scripts/python/helpers_fire_command/file_wrangler.py +2 -3
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +3 -4
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +3 -2
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
- machineconfig/scripts/python/helpers_repos/entrypoint.py +2 -1
- machineconfig/scripts/python/helpers_repos/record.py +2 -1
- machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py +5 -5
- machineconfig/scripts/python/helpers_utils/download.py +151 -0
- machineconfig/scripts/python/helpers_utils/path.py +1 -1
- machineconfig/scripts/python/interactive.py +2 -2
- machineconfig/scripts/python/nw/ssh_debug_linux.py +7 -7
- machineconfig/scripts/python/nw/ssh_debug_windows.py +4 -4
- machineconfig/scripts/python/nw/wsl_windows_transfer.py +3 -2
- machineconfig/scripts/python/sessions.py +6 -7
- machineconfig/scripts/python/utils.py +2 -1
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/settings/shells/zsh/init.sh +0 -7
- machineconfig/setup_linux/web_shortcuts/interactive.sh +10 -10
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +10 -10
- machineconfig/utils/files/headers.py +2 -2
- machineconfig/utils/installer_utils/installer_class.py +39 -41
- machineconfig/utils/installer_utils/{installer.py → installer_cli.py} +59 -58
- machineconfig/utils/{installer.py → installer_utils/installer_runner.py} +1 -25
- machineconfig/utils/options.py +1 -1
- machineconfig/utils/path_extended.py +2 -2
- machineconfig/utils/path_helper.py +34 -31
- machineconfig/utils/schemas/layouts/layout_types.py +1 -1
- machineconfig/utils/ssh.py +1 -1
- {machineconfig-7.58.dist-info → machineconfig-7.60.dist-info}/METADATA +1 -1
- {machineconfig-7.58.dist-info → machineconfig-7.60.dist-info}/RECORD +56 -55
- machineconfig/jobs/installer/linux_scripts/pgsql.sh +0 -41
- /machineconfig/jobs/installer/linux_scripts/{warp-cli.sh → cloudflare_warp_cli.sh} +0 -0
- /machineconfig/utils/installer_utils/{installer_abc.py → installer_locator_utils.py} +0 -0
- {machineconfig-7.58.dist-info → machineconfig-7.60.dist-info}/WHEEL +0 -0
- {machineconfig-7.58.dist-info → machineconfig-7.60.dist-info}/entry_points.txt +0 -0
- {machineconfig-7.58.dist-info → machineconfig-7.60.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from machineconfig.utils.path_extended import
|
|
1
|
+
# from machineconfig.utils.path_extended import Path
|
|
2
2
|
from machineconfig.utils.source_of_truth import EXCLUDE_DIRS
|
|
3
3
|
from rich.console import Console
|
|
4
4
|
from rich.panel import Panel
|
|
@@ -10,8 +10,8 @@ from typing import Optional
|
|
|
10
10
|
console = Console()
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
def sanitize_path(a_path: str) ->
|
|
14
|
-
path =
|
|
13
|
+
def sanitize_path(a_path: str) -> Path:
|
|
14
|
+
path = Path(a_path)
|
|
15
15
|
if Path.cwd() == Path.home() and not path.exists():
|
|
16
16
|
result = input("Current working directory is home, and passed path is not full path, are you sure you want to continue, [y]/n? ") or "y"
|
|
17
17
|
if result == "y":
|
|
@@ -22,13 +22,13 @@ def sanitize_path(a_path: str) -> PathExtended:
|
|
|
22
22
|
if platform.system() == "Windows": # path copied from Linux/Mac to Windows
|
|
23
23
|
# For Linux: /home/username, for Mac: /Users/username
|
|
24
24
|
skip_parts = 3 if path.as_posix().startswith("/home") else 3 # Both have 3 parts to skip
|
|
25
|
-
path =
|
|
25
|
+
path = Path.home().joinpath(*path.parts[skip_parts:])
|
|
26
26
|
assert path.exists(), f"File not found: {path}"
|
|
27
27
|
source_os = "Linux" if path.as_posix().startswith("/home") else "macOS"
|
|
28
28
|
console.print(Panel(f"🔗 PATH MAPPING | {source_os} → Windows: `{a_path}` ➡️ `{path}`", title="Path Mapping", expand=False))
|
|
29
|
-
elif platform.system() in ["Linux", "Darwin"] and
|
|
29
|
+
elif platform.system() in ["Linux", "Darwin"] and Path.home().as_posix() not in path.as_posix(): # copied between Unix-like systems with different username
|
|
30
30
|
skip_parts = 3 # Both /home/username and /Users/username have 3 parts to skip
|
|
31
|
-
path =
|
|
31
|
+
path = Path.home().joinpath(*path.parts[skip_parts:])
|
|
32
32
|
assert path.exists(), f"File not found: {path}"
|
|
33
33
|
current_os = "Linux" if platform.system() == "Linux" else "macOS"
|
|
34
34
|
source_os = "Linux" if path.as_posix().startswith("/home") else "macOS"
|
|
@@ -36,12 +36,12 @@ def sanitize_path(a_path: str) -> PathExtended:
|
|
|
36
36
|
elif path.as_posix().startswith("C:"):
|
|
37
37
|
if platform.system() in ["Linux", "Darwin"]: # path copied from Windows to Linux/Mac
|
|
38
38
|
xx = str(a_path).replace("\\\\", "/")
|
|
39
|
-
path =
|
|
39
|
+
path = Path.home().joinpath(*Path(xx).parts[3:]) # exclude C:\\Users\\username
|
|
40
40
|
assert path.exists(), f"File not found: {path}"
|
|
41
41
|
target_os = "Linux" if platform.system() == "Linux" else "macOS"
|
|
42
42
|
console.print(Panel(f"🔗 PATH MAPPING | Windows → {target_os}: `{a_path}` ➡️ `{path}`", title="Path Mapping", expand=False))
|
|
43
|
-
elif platform.system() == "Windows" and
|
|
44
|
-
path =
|
|
43
|
+
elif platform.system() == "Windows" and Path.home().as_posix() not in path.as_posix(): # copied from Windows to Windows with different username
|
|
44
|
+
path = Path.home().joinpath(*path.parts[2:])
|
|
45
45
|
assert path.exists(), f"File not found: {path}"
|
|
46
46
|
console.print(Panel(f"🔗 PATH MAPPING | Windows → Windows: `{a_path}` ➡️ `{path}`", title="Path Mapping", expand=False))
|
|
47
47
|
return path.expanduser().absolute()
|
|
@@ -66,12 +66,12 @@ def find_scripts(root: Path, name_substring: str, suffixes: set[str]) -> tuple[l
|
|
|
66
66
|
return filename_matches, partial_path_matches
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
def match_file_name(sub_string: str, search_root:
|
|
69
|
+
def match_file_name(sub_string: str, search_root: Path, suffixes: set[str]) -> Path:
|
|
70
70
|
search_root_obj = search_root.absolute()
|
|
71
71
|
# assume subscript is filename only, not a sub_path. There is no need to fzf over the paths.
|
|
72
72
|
filename_matches, partial_path_matches = find_scripts(search_root_obj, sub_string, suffixes)
|
|
73
73
|
if len(filename_matches) == 1:
|
|
74
|
-
return
|
|
74
|
+
return Path(filename_matches[0])
|
|
75
75
|
console.print(Panel(f"Partial filename {search_root_obj} match with case-insensitivity failed. This generated #{len(filename_matches)} results.", title="Search", expand=False))
|
|
76
76
|
if len(filename_matches) < 20:
|
|
77
77
|
print("\n".join([a_potential_match.as_posix() for a_potential_match in filename_matches]))
|
|
@@ -80,23 +80,23 @@ def match_file_name(sub_string: str, search_root: PathExtended, suffixes: set[st
|
|
|
80
80
|
# let's see if avoiding .lower() helps narrowing down to one result
|
|
81
81
|
reduced_scripts = [a_potential_match for a_potential_match in filename_matches if sub_string in a_potential_match.name]
|
|
82
82
|
if len(reduced_scripts) == 1:
|
|
83
|
-
return
|
|
83
|
+
return Path(reduced_scripts[0])
|
|
84
84
|
elif len(reduced_scripts) > 1:
|
|
85
85
|
from machineconfig.utils.options import choose_from_options
|
|
86
86
|
choice = choose_from_options(multi=False, msg="Multiple matches found", options=reduced_scripts, fzf=True)
|
|
87
|
-
return
|
|
87
|
+
return Path(choice)
|
|
88
88
|
print(f"Result: This still generated {len(reduced_scripts)} results.")
|
|
89
89
|
if len(reduced_scripts) < 10:
|
|
90
90
|
print("\n".join([a_potential_match.as_posix() for a_potential_match in reduced_scripts]))
|
|
91
91
|
|
|
92
92
|
console.print(Panel(f"Partial path match with case-insensitivity failed. This generated #{len(partial_path_matches)} results.", title="Search", expand=False))
|
|
93
93
|
if len(partial_path_matches) == 1:
|
|
94
|
-
return
|
|
94
|
+
return Path(partial_path_matches[0])
|
|
95
95
|
elif len(partial_path_matches) > 1:
|
|
96
96
|
print("Try to narrow down partial_path_matches search by case-sensitivity.")
|
|
97
97
|
reduced_scripts = [a_potential_match for a_potential_match in partial_path_matches if sub_string in a_potential_match.as_posix()]
|
|
98
98
|
if len(reduced_scripts) == 1:
|
|
99
|
-
return
|
|
99
|
+
return Path(reduced_scripts[0])
|
|
100
100
|
print(f"Result: This still generated {len(reduced_scripts)} results.")
|
|
101
101
|
|
|
102
102
|
try:
|
|
@@ -131,21 +131,24 @@ def match_file_name(sub_string: str, search_root: PathExtended, suffixes: set[st
|
|
|
131
131
|
return search_root_obj.joinpath(res)
|
|
132
132
|
|
|
133
133
|
|
|
134
|
-
def search_for_files_of_interest(path_obj:
|
|
135
|
-
if path_obj.joinpath(".venv").exists():
|
|
136
|
-
path_objects = path_obj.search("*", not_in=[".venv"])
|
|
137
|
-
files: list[PathExtended] = []
|
|
138
|
-
for a_path_obj in path_objects:
|
|
139
|
-
files += search_for_files_of_interest(path_obj=a_path_obj, suffixes=suffixes)
|
|
140
|
-
return files
|
|
134
|
+
def search_for_files_of_interest(path_obj: Path, suffixes: set[str]) -> list[Path]:
|
|
141
135
|
if path_obj.is_file():
|
|
142
136
|
return [path_obj]
|
|
143
|
-
files: list[
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
137
|
+
files: list[Path] = []
|
|
138
|
+
directories_to_visit: list[Path] = [path_obj]
|
|
139
|
+
while directories_to_visit:
|
|
140
|
+
current_dir = directories_to_visit.pop()
|
|
141
|
+
for entry in current_dir.iterdir():
|
|
142
|
+
if entry.is_dir():
|
|
143
|
+
if entry.name == ".venv":
|
|
144
|
+
continue
|
|
145
|
+
directories_to_visit.append(entry)
|
|
146
|
+
continue
|
|
147
|
+
if entry.suffix not in suffixes:
|
|
148
|
+
continue
|
|
149
|
+
if entry.suffix == ".py" and entry.name == "__init__.py":
|
|
150
|
+
continue
|
|
151
|
+
files.append(entry)
|
|
149
152
|
return files
|
|
150
153
|
|
|
151
154
|
|
|
@@ -160,15 +163,15 @@ def get_choice_file(path: str, suffixes: Optional[set[str]]):
|
|
|
160
163
|
else:
|
|
161
164
|
suffixes = {".py"}
|
|
162
165
|
if not path_obj.exists():
|
|
163
|
-
print(f"🔍 Searching for file matching `{path}` under `{
|
|
164
|
-
choice_file = match_file_name(sub_string=path, search_root=
|
|
166
|
+
print(f"🔍 Searching for file matching `{path}` under `{Path.cwd()}`, but only if suffix matches {suffixes}")
|
|
167
|
+
choice_file = match_file_name(sub_string=path, search_root=Path.cwd(), suffixes=suffixes)
|
|
165
168
|
elif path_obj.is_dir():
|
|
166
169
|
print(f"🔍 Searching recursively for Python, PowerShell and Shell scripts in directory `{path_obj}`")
|
|
167
170
|
files = search_for_files_of_interest(path_obj, suffixes=suffixes)
|
|
168
171
|
print(f"🔍 Got #{len(files)} results.")
|
|
169
172
|
from machineconfig.utils.options import choose_from_options
|
|
170
173
|
choice_file = choose_from_options(multi=False, options=files, fzf=True, msg="Choose one option")
|
|
171
|
-
choice_file =
|
|
174
|
+
choice_file = Path(choice_file)
|
|
172
175
|
else:
|
|
173
176
|
choice_file = path_obj
|
|
174
177
|
return choice_file
|
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.60"
|
|
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=RaRtMEKcC_WP3urAjrHZcocqUvoQeSRYNRfrnDtjDe8,2859
|
|
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
|
|
@@ -51,28 +51,30 @@ machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQ
|
|
|
51
51
|
machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
52
|
machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
machineconfig/jobs/installer/check_installations.py,sha256=hkHmmT7Bx3_QWRn2v8dCKOzAapFzqHRzbe-Q08GLnKE,10743
|
|
54
|
-
machineconfig/jobs/installer/installer_data.json,sha256=
|
|
55
|
-
machineconfig/jobs/installer/package_groups.py,sha256=
|
|
56
|
-
machineconfig/jobs/installer/custom/boxes.py,sha256=
|
|
54
|
+
machineconfig/jobs/installer/installer_data.json,sha256=pr0FamqWYMvmizTEMI6X4gkSFhpf4BoPd3E6VTDRVuU,111405
|
|
55
|
+
machineconfig/jobs/installer/package_groups.py,sha256=AE1sPeEI6i7uLE_rMavA2m1skb27aYZIfjH0ukeGDYc,4938
|
|
56
|
+
machineconfig/jobs/installer/custom/boxes.py,sha256=C6R5T1INjBUKwaYPOnpx13N1VrNxHsbJ-j-llujuujY,1991
|
|
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=nI8g49zsmksx5ZZOcvcaM_gqWesOjobcG8wTzhrIA64,9021
|
|
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=1WTUgEHlpzA9POK6hMeL4-ZxDs_PvLm9q_l19edI_K8,2887
|
|
62
62
|
machineconfig/jobs/installer/custom_dev/bypass_paywall.py,sha256=ZF8yF2srljLChe1tOw_fEsalOkts4RpNwlzX9GtWh2g,1888
|
|
63
|
+
machineconfig/jobs/installer/custom_dev/cloudflare_warp_cli.py,sha256=tcKmph3J_JQApjIMfGswLiHCbt7uQ6v9S9aixN_rnqg,914
|
|
63
64
|
machineconfig/jobs/installer/custom_dev/code.py,sha256=YSmLCh4nxK9CHqeE5mOBAVkNRDRZVT8FAWggraHsiPA,2483
|
|
64
65
|
machineconfig/jobs/installer/custom_dev/cursor.py,sha256=3xoFAYFdZqurSHXeEG-vbG0KU1TNQpBMaMgL1eW6X4k,4326
|
|
65
|
-
machineconfig/jobs/installer/custom_dev/dubdb_adbc.py,sha256=
|
|
66
|
+
machineconfig/jobs/installer/custom_dev/dubdb_adbc.py,sha256=FsE0q9Vx1M2BFtLNiKgnlhzS7PCoo39BSiux-3_DtBM,852
|
|
66
67
|
machineconfig/jobs/installer/custom_dev/espanso.py,sha256=H1rZb4xnjs72lL0_mB0M4d7NrDyVv1sAG3NOkOrCB64,4137
|
|
67
68
|
machineconfig/jobs/installer/custom_dev/goes.py,sha256=SIRkpzkCeWMof0BnPuoEJy3KHNkVZs8J5DnoZJXb9TY,2130
|
|
68
69
|
machineconfig/jobs/installer/custom_dev/lvim.py,sha256=2-wbh_IClTFcFkSYk9EsRiv88-isSNIVX6dNZ1L5m8Q,2985
|
|
69
70
|
machineconfig/jobs/installer/custom_dev/nerdfont.py,sha256=dsPmiqP9AJCack7mNeJ8Qzo4dSOwC0bsupH0Hn3gqSg,4149
|
|
70
|
-
machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py,sha256=
|
|
71
|
+
machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py,sha256=NbmRNNq3Mc-x-UgQxYDy5-cBngMAAax7nEnnvbhbq4Q,5627
|
|
71
72
|
machineconfig/jobs/installer/custom_dev/redis.py,sha256=bReDLsgy37eJyTU4TXE7FQpKFi-_usQC7bwhfXvZuBU,3259
|
|
72
|
-
machineconfig/jobs/installer/custom_dev/sysabc.py,sha256
|
|
73
|
-
machineconfig/jobs/installer/custom_dev/wezterm.py,sha256=
|
|
73
|
+
machineconfig/jobs/installer/custom_dev/sysabc.py,sha256=-X0XK4MPtIi70YD4-f5GebtajziBYVTNYa6_wOXs34k,5385
|
|
74
|
+
machineconfig/jobs/installer/custom_dev/wezterm.py,sha256=yQqRpnaj7I_2q-Ge9HX0leK5-ntUCWpkqgH09cgmh-Q,3063
|
|
74
75
|
machineconfig/jobs/installer/custom_dev/winget.py,sha256=gLdwM20jKMf2bMV3BAcOg4MkuzwF09CU5OhXvLkPoHo,5738
|
|
75
76
|
machineconfig/jobs/installer/linux_scripts/brave.sh,sha256=_al_D5iZSwtlDRTeqjjK37nEWai8mrHFk-cZeVws9MY,1389
|
|
77
|
+
machineconfig/jobs/installer/linux_scripts/cloudflare_warp_cli.sh,sha256=dnMHZjyyYARwKFa1XZbIonLntIHTRGROyr2v4Eodd6s,2157
|
|
76
78
|
machineconfig/jobs/installer/linux_scripts/docker.sh,sha256=4NYWXCdvh6qlggVVH7FGe6jWkYuWoaJoDwLJvI4oRNQ,4471
|
|
77
79
|
machineconfig/jobs/installer/linux_scripts/docker_start.sh,sha256=8L2fLex6PU8nCpBii7yT8w4CvULZ9_JcDvxdCGJQ6cU,894
|
|
78
80
|
machineconfig/jobs/installer/linux_scripts/edge.sh,sha256=f1UI2Z2s0ToZ-QGlzkS1ThcRsTz5tMHOjxSFqfHK9SQ,1319
|
|
@@ -80,11 +82,9 @@ machineconfig/jobs/installer/linux_scripts/lid.sh,sha256=nUw870lc5p8GA8KT3JI29ob
|
|
|
80
82
|
machineconfig/jobs/installer/linux_scripts/nerdfont.sh,sha256=ute9wl4BcqHUqavVHWJlnMcmugdb50LbnUVlU0cUVso,1475
|
|
81
83
|
machineconfig/jobs/installer/linux_scripts/network.sh,sha256=j3kRV2mFEZK05XL2UdR9ssW2hkLH5rOYM7LU539UUEE,1358
|
|
82
84
|
machineconfig/jobs/installer/linux_scripts/ngrok.sh,sha256=K-t62nhnAHxhppTmqjubIJRHozkNHfBxXGbn1Oz3w-A,287
|
|
83
|
-
machineconfig/jobs/installer/linux_scripts/pgsql.sh,sha256=FbIteF6RVCcDdHl8seFFO7FuAX9siZpkwr9WVeKn5NA,1655
|
|
84
85
|
machineconfig/jobs/installer/linux_scripts/q.sh,sha256=lPSHBeZm4z6xv5K3cYPiOkK0A-LaNSNJN2ysVb1Qa9Y,261
|
|
85
86
|
machineconfig/jobs/installer/linux_scripts/redis.sh,sha256=-Ur541bMwjq6TKrmvy-S5c_qoR8GlRpE6923USDylm8,2097
|
|
86
87
|
machineconfig/jobs/installer/linux_scripts/vscode.sh,sha256=fI6lNCWUjlstNE319Y-rUtimvLLb9GcNh3z9t1KRaaE,4541
|
|
87
|
-
machineconfig/jobs/installer/linux_scripts/warp-cli.sh,sha256=dnMHZjyyYARwKFa1XZbIonLntIHTRGROyr2v4Eodd6s,2157
|
|
88
88
|
machineconfig/jobs/installer/linux_scripts/wezterm.sh,sha256=hZBS0CopWr-VrGhFSVjoWATFzHqCt6V41_N8bImAQRc,1294
|
|
89
89
|
machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1,sha256=JsQfGAMkvirhiUmBNOifMlbum2PfHSs0-Akgj-J-WZw,3177
|
|
90
90
|
machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -111,19 +111,19 @@ machineconfig/scripts/nu/wrap_mcfg.nu,sha256=9heiUHVkHjI_AMXT5QJJixk7ZK_hJNV_A8l
|
|
|
111
111
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
machineconfig/scripts/python/agents.py,sha256=aVbLQDgpngXZm4taHcED4sAxyHvV2_Dz5VW3apPcQcY,10651
|
|
113
113
|
machineconfig/scripts/python/cloud.py,sha256=yAD6ciKiEtv2CH3g2NScDK5cpCZQi7Vu8yyeehw_cU8,1263
|
|
114
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
114
|
+
machineconfig/scripts/python/croshell.py,sha256=eMDBaFphreM78j_YFqfZEHSC89O81wxym3LQ8kreFng,7132
|
|
115
115
|
machineconfig/scripts/python/define.py,sha256=AtuVac6tJeDMcxtbWmQh1TH3dYAPSGFdO51b75zJVeI,717
|
|
116
|
-
machineconfig/scripts/python/devops.py,sha256=
|
|
116
|
+
machineconfig/scripts/python/devops.py,sha256=Nja71JbGPTg7lLQ-O0dg4PYgGKAoIcD2f7reUXEgWY8,2199
|
|
117
117
|
machineconfig/scripts/python/devops_navigator.py,sha256=5Cm384D4S8_GsvMzTwr0C16D0ktf8_5Mk5bEJncwDO8,237
|
|
118
118
|
machineconfig/scripts/python/explore.py,sha256=3kNglM1KYp57U8yrbWeHEslN458-xieRuFYsJAhrpIs,1247
|
|
119
119
|
machineconfig/scripts/python/fire_jobs.py,sha256=zLLgPfqCSpXBeU5kC4XEcojscZFy-K0K3dbbGqkTczU,13135
|
|
120
120
|
machineconfig/scripts/python/ftpx.py,sha256=8tmhKBZgSuhFZZYaT4JAIgeXMKmxJhxg5aJQFbbdtDg,9857
|
|
121
|
-
machineconfig/scripts/python/interactive.py,sha256=
|
|
121
|
+
machineconfig/scripts/python/interactive.py,sha256=gJLeuqSdlN3AENbeArFsijh_U8KUD61nYCTn02edXEE,11532
|
|
122
122
|
machineconfig/scripts/python/machineconfig.py,sha256=l211lxHRcQ6BH7x3FwQHSJCYbYs6RJL5e0POjyWAW9A,3048
|
|
123
123
|
machineconfig/scripts/python/msearch.py,sha256=3NbwJFJtrvPSVyOfa6ogPjD-NVuRJHeAQ1WriDXCduU,737
|
|
124
|
-
machineconfig/scripts/python/sessions.py,sha256=
|
|
124
|
+
machineconfig/scripts/python/sessions.py,sha256=lw_XxifRLpkx9IS382m_fsLd4Ogt1XlG5E05dFnQhw0,9549
|
|
125
125
|
machineconfig/scripts/python/terminal.py,sha256=PQ2C2flC2UngfeTNYhHLBiwj__kmE12gxZu2ivtr4Kg,5978
|
|
126
|
-
machineconfig/scripts/python/utils.py,sha256=
|
|
126
|
+
machineconfig/scripts/python/utils.py,sha256=Gu1Eu3SBBN-0dFuH-wQURRcBD55WOhOtAr1mtBlg_aY,3523
|
|
127
127
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
128
|
machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
|
|
129
129
|
machineconfig/scripts/python/ai/initai.py,sha256=P4-NCLJPWeNef_k-l4TQ92AB1Xm1k3xzdqSBIjmevnQ,1573
|
|
@@ -156,7 +156,7 @@ machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1
|
|
|
156
156
|
machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
157
157
|
machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
|
|
158
158
|
machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
|
|
159
|
-
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=
|
|
159
|
+
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=SKAcJU7je9KOZZaYOyNssHk5mU09hRBFqONZ5N2peMI,6932
|
|
160
160
|
machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
161
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=YD6-rtudHNip8tx85amSmOZZIHBP9khq4az3dF41j6U,5934
|
|
162
162
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
@@ -179,7 +179,7 @@ machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=ThfI4rvKG6IPzAo3
|
|
|
179
179
|
machineconfig/scripts/python/helpers_cloud/helpers2.py,sha256=3fXDiDlz5EDk_04YtPd-bjZcjUjmGTpgiQ1YMaGbD8g,7310
|
|
180
180
|
machineconfig/scripts/python/helpers_cloud/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
|
|
181
181
|
machineconfig/scripts/python/helpers_croshell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
-
machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=
|
|
182
|
+
machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=J0Wle1nyxcaOV2TArsHx8DUkVbKH1fartTXr_Nztcys,1601
|
|
183
183
|
machineconfig/scripts/python/helpers_croshell/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
|
|
184
184
|
machineconfig/scripts/python/helpers_croshell/scheduler.py,sha256=rKhssuxkD697EY6qaV6CSdNhxpAQLDWO4fE8GMCQ9FA,3061
|
|
185
185
|
machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=HfJReOusTPhwcbAvCyJyTBd2iumJB5wmPdcTXz_Yvh8,4897
|
|
@@ -187,16 +187,16 @@ machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgM
|
|
|
187
187
|
machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
188
188
|
machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
189
|
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=VLR7tH1SdR3ftWSNjyt0LHc1gRssYJXYvkLjtydxVOM,5007
|
|
190
|
-
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=
|
|
190
|
+
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=KFIBpAaBtRn-nP1ILXZmyGlgCi4olKRohoF-HdHORaQ,4034
|
|
191
191
|
machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
|
|
192
192
|
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=u_2l5Cc3dFnh0seKrbH9j-Z0bUCrgy45MOM6HCjgkQg,7562
|
|
193
193
|
machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=mFrhosIFCCT70d82NYUxp9ta6BYeAHQNhsx7CEmWcg4,12478
|
|
194
|
-
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=
|
|
195
|
-
machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=
|
|
196
|
-
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=
|
|
197
|
-
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=
|
|
198
|
-
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=
|
|
199
|
-
machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=
|
|
194
|
+
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=iKM6HKsJBN5J8rvlwvLS_VCKmf64_s1IiPEj4MhkuGA,6993
|
|
195
|
+
machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=LBQKUCA-3pJlV65vE-6F9uiYF_mwU7G1oF6-hqBS8EQ,6306
|
|
196
|
+
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=4vUp6dMGACwLYAR3LaROac9aYvzJRQI4_g5bMWOC3rI,6282
|
|
197
|
+
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=AxGAenzrw-8_hQoMhWnE87ivdJ-h9WJ4bij6nBWVP5A,6023
|
|
198
|
+
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=vhbTfp2VyNXi9-yAwYFRVIx90mBFi0qQyGEoy3XU9eE,4968
|
|
199
|
+
machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Tyfz5S1QfY_nOhg-ROTp9eILNqYx_i1ootth34frbv0,5540
|
|
200
200
|
machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=PJVPhfhXq8der6Xd-_fjZfnizfM-RGfJApkRGhGBmNo,20525
|
|
201
201
|
machineconfig/scripts/python/helpers_devops/devops_update_repos.py,sha256=kSln8_-Wn7Qu0NaKdt-QTN_bBVyTIAWHH8xVYKK-vCM,10133
|
|
202
202
|
machineconfig/scripts/python/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -206,9 +206,9 @@ machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.ps1,sha
|
|
|
206
206
|
machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py,sha256=pRXAGe2IpysYshsaF8CKEwHI8EGPtLcM8PtiAqM7vmM,3425
|
|
207
207
|
machineconfig/scripts/python/helpers_fire_command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
208
|
machineconfig/scripts/python/helpers_fire_command/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
|
|
209
|
-
machineconfig/scripts/python/helpers_fire_command/file_wrangler.py,sha256=
|
|
209
|
+
machineconfig/scripts/python/helpers_fire_command/file_wrangler.py,sha256=yJVFrdrH9iVkKxY0z6JXfJRuRZ22M2cc6bArt0l9F3w,6230
|
|
210
210
|
machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py,sha256=teioVhLI-skNpbYOJGo7WJEnz_FHzyidHff174CZSg8,4359
|
|
211
|
-
machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=
|
|
211
|
+
machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=qSpr0sXMYvwTTSrT4LzLXYZfKDcOvaxEIBdk_dC1R4I,5345
|
|
212
212
|
machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
213
|
machineconfig/scripts/python/helpers_msearch/__init__.py,sha256=eZSLmDDBtML_JRn1BjU8IyzXEqjZ9-u3TYY6_hYsEKA,183
|
|
214
214
|
machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfag,sha256=u3EYNQ_WT8jP11V0DPXWWXmFj1rzgNBnRokVBdVZpmc,677
|
|
@@ -228,17 +228,18 @@ machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wd
|
|
|
228
228
|
machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
|
|
229
229
|
machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
|
|
230
230
|
machineconfig/scripts/python/helpers_repos/clone.py,sha256=9RZgs2OD2RUH6UiZKCuUvRyweDBomAm2lDG2qJmhry0,5436
|
|
231
|
-
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=
|
|
231
|
+
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=eotVhV0_j-uHOY07IoteBCwXsddPYiaRQwo7aOJfiFk,11577
|
|
232
232
|
machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
|
|
233
|
-
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=
|
|
234
|
-
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=
|
|
233
|
+
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=sgdt8YLXWmkrHEvmmSjhKTYAtQ2YX-nAudiA-vZRcWU,607
|
|
234
|
+
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=eAM-7trZCPTeep0iTU3_HNqCkF0pYKqMMXNq3vLBsP8,2898
|
|
235
235
|
machineconfig/scripts/python/helpers_repos/grource.py,sha256=lHxyfsIQr4pbu71Ekqu-9nohR7LXbN2wufw7LPTyOgM,14639
|
|
236
|
-
machineconfig/scripts/python/helpers_repos/record.py,sha256=
|
|
236
|
+
machineconfig/scripts/python/helpers_repos/record.py,sha256=1PycYcW7VA-9n9iv1TJXub7qNIQ6I6Z9dEnvbdDm4TU,11099
|
|
237
237
|
machineconfig/scripts/python/helpers_repos/sync.py,sha256=P0P7Dog2uFDvwxcLP3YHPwm6AtvCm6QOz1BLqw53xOo,3259
|
|
238
238
|
machineconfig/scripts/python/helpers_repos/update.py,sha256=cUIMUMm-50HrY6fzxSMZnFplhToVjVPZMm1j_otTha4,11060
|
|
239
239
|
machineconfig/scripts/python/helpers_sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
|
-
machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=
|
|
241
|
-
machineconfig/scripts/python/helpers_utils/
|
|
240
|
+
machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=wCQPpsOeuNz0V7_SopHWLRgYQcQryDdQSDabikVS3AE,3054
|
|
241
|
+
machineconfig/scripts/python/helpers_utils/download.py,sha256=YiXiCDp3hVk2pxPaOOrrGMY2JdtWXBmRL34LWY15u9U,6649
|
|
242
|
+
machineconfig/scripts/python/helpers_utils/path.py,sha256=websDwdmPmjRSRGgkaSdirMfgwK4jvdL4hOtNne7sO8,3982
|
|
242
243
|
machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
243
244
|
machineconfig/scripts/python/nw/devops_add_identity.py,sha256=aPjcHbTLhxYwWYcandyAHdwuO15ZBu3fB82u6bI0tMQ,3773
|
|
244
245
|
machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=hPmrJb6Q8dbvZBkj00va4najYDKziQ9A7CfZ3TZPccI,9560
|
|
@@ -250,15 +251,15 @@ machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lD
|
|
|
250
251
|
machineconfig/scripts/python/nw/mount_smb,sha256=7UN5EP1kuxYL_-CnyaH4f9Wuu2CgALDZpJ0mPcdvCiY,94
|
|
251
252
|
machineconfig/scripts/python/nw/mount_ssh.py,sha256=qt0P4T4pheszexBxaDeLVrGdLIVRoOc-UdfYv5r0OLY,2587
|
|
252
253
|
machineconfig/scripts/python/nw/onetimeshare.py,sha256=xRd8by6qUm-od2Umty2MYsXyJwzXw-CBTd7VellNaKY,2498
|
|
253
|
-
machineconfig/scripts/python/nw/ssh_debug_linux.py,sha256=
|
|
254
|
-
machineconfig/scripts/python/nw/ssh_debug_windows.py,sha256=
|
|
254
|
+
machineconfig/scripts/python/nw/ssh_debug_linux.py,sha256=0tjKgf5bElHqSgwUEFVY7iKOxax93Lxy-nJ8krqjUZ0,30868
|
|
255
|
+
machineconfig/scripts/python/nw/ssh_debug_windows.py,sha256=0IjOHX7OUs1512teldJhSzsDIvYoyqQMVzzSNgXz11A,29920
|
|
255
256
|
machineconfig/scripts/python/nw/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
|
|
256
|
-
machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=
|
|
257
|
+
machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=bxdh2rGV4GABcjwzj3Y_eJIO5p5-w6LGY9XF9XZLBwU,3604
|
|
257
258
|
machineconfig/scripts/windows/wrap_mcfg.ps1,sha256=tFCj4wK7B35Uf6kdGCRV7EIr1xZFTbhwFchYUu8zsjM,2117
|
|
258
259
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
259
260
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
260
261
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
261
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
262
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=rw-rtJ5G2zFXjXPOWaig3mwcgrB2u7T8wYbT-T_YUp4,322
|
|
262
263
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
263
264
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
264
265
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -345,7 +346,7 @@ machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1op
|
|
|
345
346
|
machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
|
|
346
347
|
machineconfig/settings/shells/wezterm/wezterm.lua,sha256=_ERpROSN3XNtbZJgL1jkAb8DhwGjUjOYuAW6p43CA00,6296
|
|
347
348
|
machineconfig/settings/shells/wt/settings.json,sha256=Nzk9IpD-Bp36wKJAgG7XAa0GVwW3I29xNjUW5AYfxEI,10599
|
|
348
|
-
machineconfig/settings/shells/zsh/init.sh,sha256=
|
|
349
|
+
machineconfig/settings/shells/zsh/init.sh,sha256=46-PVbbuv4h86k6lkSzALCkW7i_qZukfQm5ZFRwAEhs,2821
|
|
349
350
|
machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
|
|
350
351
|
machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
|
|
351
352
|
machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
|
|
@@ -380,7 +381,7 @@ machineconfig/setup_linux/others/cli_installation.sh,sha256=gVvszYZJgKPRJx2SEaE3
|
|
|
380
381
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
381
382
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
382
383
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
383
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
384
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=H-NlFSckCj64i4RBBGqHa0XnQiYtBaC3_Cs1NHrkwMw,1606
|
|
384
385
|
machineconfig/setup_mac/__init__.py,sha256=PfdhwY4Ss-rfP7b4-9fvKwxCDtNAd-u1JdhFYnE7CwI,518
|
|
385
386
|
machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
|
|
386
387
|
machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
|
|
@@ -395,26 +396,25 @@ machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdW
|
|
|
395
396
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
396
397
|
machineconfig/setup_windows/ssh/openssh-server_add_key.ps1,sha256=91cL3K4H2saAuzOS1GxGicpc64ZDpgvPY39YPBWyxZI,269
|
|
397
398
|
machineconfig/setup_windows/ssh/openssh-server_copy-ssh-id.ps1,sha256=-7pElYiGFXUvO4dp6rW0LXmNo65h3hFTHJWyHbmO3Xc,745
|
|
398
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
399
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=gSZTCrBApnafzO4Lna-x4eQf1AU3ywocWpRf9Na3muY,1939
|
|
399
400
|
machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=8TOw-ZxaWA6mZkOICAQtpQfqB2fUyD4HVfqokpxCCqI,655
|
|
400
401
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
401
402
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
402
403
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
403
404
|
machineconfig/utils/accessories.py,sha256=Rs8R0GUb2Ub6YimkgXHnI02CShS5BKlrZdCigVxfPlk,4339
|
|
404
405
|
machineconfig/utils/code.py,sha256=oI5x0lZFj7MoGc32v-POhs1h20PGZnyCS5KUWRzYQZI,7825
|
|
405
|
-
machineconfig/utils/installer.py,sha256=cXR0AWVuhAl1th37GlS7qBmEdKIqAaCIXAEiBYUu2as,9476
|
|
406
406
|
machineconfig/utils/io.py,sha256=6kXNd3t6FCHxZzmPOIKTCdXDRnSdHoy4IqcthwBbYGY,6456
|
|
407
407
|
machineconfig/utils/links.py,sha256=m5-MfendBa8YiPPyS-lWiuu6Ru1-jU3hg3BYQgIaWg8,25012
|
|
408
408
|
machineconfig/utils/meta.py,sha256=4ocYH3Zi6bVN6FVgXoGIfoasV6oxi67I9rQ8hvyYinc,9892
|
|
409
409
|
machineconfig/utils/notifications.py,sha256=tuXIudcip0tEioG-bm8BbLr3FMDve4f6BktlznBhKxM,9013
|
|
410
|
-
machineconfig/utils/options.py,sha256=
|
|
411
|
-
machineconfig/utils/path_extended.py,sha256
|
|
412
|
-
machineconfig/utils/path_helper.py,sha256=
|
|
410
|
+
machineconfig/utils/options.py,sha256=Um3nbX0spuA2LmqIBhBdTYAs0ofm6yeiaTfLWLQR0zI,7457
|
|
411
|
+
machineconfig/utils/path_extended.py,sha256=7OilQn-Ilzy78sbyQDiqazUMc4oZN84ppP2csPap-i4,50677
|
|
412
|
+
machineconfig/utils/path_helper.py,sha256=mwYJvyL9aypoyukSjTXFj-6qottRBgyMgu-tTVYLOIU,10423
|
|
413
413
|
machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,10957
|
|
414
414
|
machineconfig/utils/scheduler.py,sha256=fguwvINyaupOxdU5Uadyxalh_jXTXDzt0ioEgjEOKcM,14705
|
|
415
415
|
machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
|
|
416
416
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
417
|
-
machineconfig/utils/ssh.py,sha256=
|
|
417
|
+
machineconfig/utils/ssh.py,sha256=IAH3teNygY-yy9tRjwS1-V44hE5AKNrntj4jZB7d2GY,39262
|
|
418
418
|
machineconfig/utils/terminal.py,sha256=VDgsjTjBmMGgZN0YIc0pJ8YksLDrBtiXON1EThy7_is,4264
|
|
419
419
|
machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
|
|
420
420
|
machineconfig/utils/upgrade_packages.py,sha256=e4iJn_9vL2zCJxAR2dhKJjM0__ALKgI5yB1uBRxSjhQ,6994
|
|
@@ -425,7 +425,7 @@ machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTU
|
|
|
425
425
|
machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqjZxU_3nXx2CA-qKbQgP3I,26232
|
|
426
426
|
machineconfig/utils/files/ascii_art.py,sha256=SQkayd2r_PkvLCNRjNnq5JzYz8t_dOMHquiJ3E6-9Ck,5216
|
|
427
427
|
machineconfig/utils/files/dbms.py,sha256=B7Mns8g774kfeXZwcuGWUpRnSgiOtS6khn8faRH5rQs,11390
|
|
428
|
-
machineconfig/utils/files/headers.py,sha256=
|
|
428
|
+
machineconfig/utils/files/headers.py,sha256=nZVdTKCt-n600huiX5qVZO22aArjn4CPsFcjRWrEIBY,3523
|
|
429
429
|
machineconfig/utils/files/read.py,sha256=QDxLEIYi0NcgAys97IVB6IUl4S9CiFP6TKGxUxRBJOM,4330
|
|
430
430
|
machineconfig/utils/files/art/fat_croco.txt,sha256=Gz-qK0YZT4pnPA16hlsCVZN3HrBAPW_1hEv3IZTy01Q,637
|
|
431
431
|
machineconfig/utils/files/art/halfwit_croco.txt,sha256=To3-lWfcnonx2Ap71lVYyJ6PTK04G78L3uCM10-hCRk,437
|
|
@@ -435,16 +435,17 @@ machineconfig/utils/files/ouch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
435
435
|
machineconfig/utils/files/ouch/decompress.py,sha256=7qPaEkMerBBXzeZyFn8hLODHZJv1aty-yGgwBxLgVys,1413
|
|
436
436
|
machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
437
437
|
machineconfig/utils/installer_utils/github_release_bulk.py,sha256=WJf_qZlF02SmIc6C7o1h4Gy4gAaJAfeAS8O9s2Itj-k,6535
|
|
438
|
-
machineconfig/utils/installer_utils/
|
|
439
|
-
machineconfig/utils/installer_utils/
|
|
440
|
-
machineconfig/utils/installer_utils/
|
|
438
|
+
machineconfig/utils/installer_utils/installer_class.py,sha256=1RJXdyYnrWPp9DSmTaDyvX9m6jAaojTAhA-IQTS9wQk,17561
|
|
439
|
+
machineconfig/utils/installer_utils/installer_cli.py,sha256=dXv8m_h8KlEz8lL9wquIdRp73lu9gWzenpb1wAYJck4,9331
|
|
440
|
+
machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=_QihkKgi7-IGrQQoy8muD0iL_n65ebvqDgiv43sCudI,8984
|
|
441
|
+
machineconfig/utils/installer_utils/installer_runner.py,sha256=yHaW2_5XM7NTfS7kWDEhb7MJZAr4GMzs1aR6pOFYBBo,8047
|
|
441
442
|
machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=d3pwhmE-EuHPxaIoTTZeUdDUEK9QqtimV8zO3vV-7N4,2052
|
|
442
443
|
machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
|
|
443
|
-
machineconfig/utils/schemas/layouts/layout_types.py,sha256=
|
|
444
|
+
machineconfig/utils/schemas/layouts/layout_types.py,sha256=IV45Z_ZTw8S4V-wiZ_lpAVsUX6rSSfDCG7qm5Dk4Oog,1977
|
|
444
445
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
445
446
|
machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
446
|
-
machineconfig-7.
|
|
447
|
-
machineconfig-7.
|
|
448
|
-
machineconfig-7.
|
|
449
|
-
machineconfig-7.
|
|
450
|
-
machineconfig-7.
|
|
447
|
+
machineconfig-7.60.dist-info/METADATA,sha256=MNn8SOdp4YWZwTOEIelU4hS57t27x99kxPQDpDRJduk,5939
|
|
448
|
+
machineconfig-7.60.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
449
|
+
machineconfig-7.60.dist-info/entry_points.txt,sha256=_JNgkzaa_gVAWyZ6UwPwXXQqURRSvAGhrVQ1RiU2sHc,746
|
|
450
|
+
machineconfig-7.60.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
451
|
+
machineconfig-7.60.dist-info/RECORD,,
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
# 🐘 POSTGRESQL INSTALLATION SCRIPT 🐘
|
|
3
|
-
# This script installs PostgreSQL database on Ubuntu/Debian systems
|
|
4
|
-
# Reference: https://www.postgresql.org/download/linux/ubuntu/
|
|
5
|
-
|
|
6
|
-
echo """🚀 STARTING POSTGRESQL INSTALLATION | Setting up PostgreSQL database
|
|
7
|
-
"""
|
|
8
|
-
|
|
9
|
-
# Install PostgreSQL common package
|
|
10
|
-
echo "📥 Installing PostgreSQL common package..."
|
|
11
|
-
sudo nala install postgresql-common -y
|
|
12
|
-
|
|
13
|
-
# Run the PostgreSQL repository setup script
|
|
14
|
-
echo "🔧 Setting up PostgreSQL repository..."
|
|
15
|
-
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y
|
|
16
|
-
|
|
17
|
-
# Install PostgreSQL 17
|
|
18
|
-
echo """📦 INSTALLING POSTGRESQL | Installing PostgreSQL 17
|
|
19
|
-
"""
|
|
20
|
-
sudo nala install postgresql-17 -y
|
|
21
|
-
# Alternative: sudo nala install postgresql -y
|
|
22
|
-
|
|
23
|
-
echo """✅ INSTALLATION COMPLETE | PostgreSQL has been installed successfully
|
|
24
|
-
"""
|
|
25
|
-
echo "ℹ️ PostgreSQL service should be running automatically"
|
|
26
|
-
echo "💡 Connect to default 'postgres' database with: sudo -u postgres psql"
|
|
27
|
-
echo "🔄 To check service status: sudo systemctl status postgresql"
|
|
28
|
-
|
|
29
|
-
# REMOVAL INSTRUCTIONS:
|
|
30
|
-
echo """#-----------------------------------------------------------------------
|
|
31
|
-
📝 NOTES | For future reference
|
|
32
|
-
#-----------------------------------------------------------------------
|
|
33
|
-
To remove PostgreSQL completely:
|
|
34
|
-
sudo apt-get --purge remove postgresql postgresql-*
|
|
35
|
-
"""
|
|
36
|
-
|
|
37
|
-
# Alternative installation method (commented out):
|
|
38
|
-
# sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $ubuntu_version-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
|
39
|
-
# curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
|
|
40
|
-
# sudo nala update
|
|
41
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|