machineconfig 6.57__py3-none-any.whl → 6.58__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/profile/create_shell_profile.py +6 -1
- machineconfig/scripts/python/entry.py +6 -0
- machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/helpers_devops/cli_config.py +34 -3
- machineconfig/scripts/python/helpers_devops/cli_self.py +12 -11
- machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.bash +3 -0
- machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.ps1 +0 -0
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +1 -1
- machineconfig/scripts/python/nw/mount_nfs +1 -1
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/settings/shells/bash/init.sh +14 -0
- machineconfig/settings/shells/pwsh/init.ps1 +20 -12
- machineconfig/settings/shells/zsh/init.sh +91 -0
- 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-6.57.dist-info → machineconfig-6.58.dist-info}/METADATA +1 -1
- {machineconfig-6.57.dist-info → machineconfig-6.58.dist-info}/RECORD +21 -18
- {machineconfig-6.57.dist-info → machineconfig-6.58.dist-info}/WHEEL +0 -0
- {machineconfig-6.57.dist-info → machineconfig-6.58.dist-info}/entry_points.txt +0 -0
- {machineconfig-6.57.dist-info → machineconfig-6.58.dist-info}/top_level.txt +0 -0
|
@@ -48,9 +48,14 @@ def create_default_shell_profile() -> None:
|
|
|
48
48
|
if system == "Windows":
|
|
49
49
|
init_script = PathExtended(CONFIG_ROOT).joinpath("settings/shells/pwsh/init.ps1")
|
|
50
50
|
source_line = f""". {str(init_script.collapseuser(placeholder="$HOME"))}"""
|
|
51
|
-
|
|
51
|
+
elif system == "Linux":
|
|
52
52
|
init_script = PathExtended(CONFIG_ROOT).joinpath("settings/shells/bash/init.sh")
|
|
53
53
|
source_line = f"""source {str(init_script.collapseuser(placeholder="$HOME"))}"""
|
|
54
|
+
elif system == "Darwin":
|
|
55
|
+
init_script = PathExtended(CONFIG_ROOT).joinpath("settings/shells/zsh/init.sh")
|
|
56
|
+
source_line = f"""source {str(init_script.collapseuser(placeholder="$HOME"))}"""
|
|
57
|
+
else:
|
|
58
|
+
raise ValueError(f"""Not implemented for this system {system}""")
|
|
54
59
|
|
|
55
60
|
was_shell_updated = False
|
|
56
61
|
if source_line in shell_profile:
|
|
@@ -4,6 +4,7 @@ from machineconfig.scripts.python.cloud import get_app as get_cloud_app
|
|
|
4
4
|
from machineconfig.scripts.python.agents import get_app as get_agents_app
|
|
5
5
|
from machineconfig.scripts.python.fire_jobs import get_app as get_fire_jobs_app
|
|
6
6
|
from machineconfig.scripts.python.sessions import get_app as get_sessions_app
|
|
7
|
+
from machineconfig.scripts.python.utils import get_app as get_utils_app
|
|
7
8
|
|
|
8
9
|
from machineconfig.scripts.python.ftpx import ftpx as ftpx_func
|
|
9
10
|
from machineconfig.scripts.python.croshell import croshell as croshell_func
|
|
@@ -37,8 +38,13 @@ def get_app():
|
|
|
37
38
|
app.command("croshell", no_args_is_help=False, help="[r] Cross-shell command execution")(croshell_func)
|
|
38
39
|
app.command("r", no_args_is_help=False, hidden=True)(croshell_func) # short alias
|
|
39
40
|
|
|
41
|
+
utils_app = get_utils_app()
|
|
42
|
+
app.add_typer(utils_app, name="utils", help="[u] Utility commands", no_args_is_help=True)
|
|
43
|
+
app.add_typer(utils_app, name="u", hidden=True) # short alias
|
|
44
|
+
|
|
40
45
|
return app
|
|
41
46
|
|
|
47
|
+
|
|
42
48
|
def main():
|
|
43
49
|
app = get_app()
|
|
44
50
|
app()
|
|
@@ -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.58")
|
|
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])
|
|
@@ -59,6 +59,34 @@ def pwsh_theme():
|
|
|
59
59
|
import subprocess
|
|
60
60
|
subprocess.run(["pwsh", "-File", str(file)])
|
|
61
61
|
|
|
62
|
+
def starship_theme():
|
|
63
|
+
"""🔗 Select starship prompt theme."""
|
|
64
|
+
import subprocess
|
|
65
|
+
from machineconfig.utils.code import run_shell_script
|
|
66
|
+
|
|
67
|
+
presets: list[str] = ["catppuccin-powerline", "pastel-powerline", "tokyo-night", "gruvbox-rainbow", "jetpack"]
|
|
68
|
+
config_path: Path = Path.home() / ".config" / "starship.toml"
|
|
69
|
+
|
|
70
|
+
typer.echo("\n🚀 Starship Theme Selector\n")
|
|
71
|
+
for idx, preset in enumerate(presets, start=1):
|
|
72
|
+
typer.echo(f"{idx}. {preset}")
|
|
73
|
+
|
|
74
|
+
choice: str = typer.prompt("Select a preset")
|
|
75
|
+
|
|
76
|
+
try:
|
|
77
|
+
choice_idx: int = int(choice)
|
|
78
|
+
if 1 <= choice_idx <= len(presets):
|
|
79
|
+
selected_preset: str = presets[choice_idx - 1]
|
|
80
|
+
typer.echo(f"\n✨ Applying {selected_preset}...")
|
|
81
|
+
run_shell_script(f"""starship preset {selected_preset} -o {config_path}""")
|
|
82
|
+
typer.echo("\n📋 Preview:")
|
|
83
|
+
subprocess.run(["starship", "module", "all"], check=False)
|
|
84
|
+
typer.echo(f"\n✅ {selected_preset} applied!")
|
|
85
|
+
else:
|
|
86
|
+
typer.echo("❌ Invalid selection")
|
|
87
|
+
except ValueError:
|
|
88
|
+
typer.echo("❌ Please enter a valid number")
|
|
89
|
+
|
|
62
90
|
def copy_assets(which: Annotated[Literal["scripts", "settings", "both"], typer.Argument(..., help="Which assets to copy")]):
|
|
63
91
|
"""🔗 Copy asset files from library to machine."""
|
|
64
92
|
import machineconfig.profile.create_helper as create_helper
|
|
@@ -82,8 +110,11 @@ def get_app():
|
|
|
82
110
|
config_apps.command("s", no_args_is_help=False, help="Configure your shell profile.", hidden=True)(shell)
|
|
83
111
|
config_apps.command("path", no_args_is_help=False, help="📚 [p] NAVIGATE PATH variable with TUI")(path)
|
|
84
112
|
config_apps.command("p", no_args_is_help=False, help="NAVIGATE PATH variable with TUI", hidden=True)(path)
|
|
85
|
-
config_apps.command("
|
|
86
|
-
config_apps.command("t", no_args_is_help=False, help="Select
|
|
113
|
+
config_apps.command("starship-theme", no_args_is_help=False, help="🔗 [t] Select starship prompt theme.")(starship_theme)
|
|
114
|
+
config_apps.command("t", no_args_is_help=False, help="Select starship prompt theme.", hidden=True)(starship_theme)
|
|
115
|
+
config_apps.command("pwsh-theme", no_args_is_help=False, help="🔗 [T] Select powershell prompt theme.")(pwsh_theme)
|
|
116
|
+
config_apps.command("T", no_args_is_help=False, help="Select powershell prompt theme.", hidden=True)(pwsh_theme)
|
|
117
|
+
|
|
87
118
|
config_apps.command("copy-assets", no_args_is_help=True, help="🔗 [c] Copy asset files from library to machine.", hidden=False)(copy_assets)
|
|
88
119
|
config_apps.command("c", no_args_is_help=True, help="Copy asset files from library to machine.", hidden=True)(copy_assets)
|
|
89
120
|
return config_apps
|
|
@@ -10,20 +10,21 @@ def update(no_copy_assets: Annotated[bool, typer.Option("--no-assets-copy", "-na
|
|
|
10
10
|
from pathlib import Path
|
|
11
11
|
if Path.home().joinpath("code", "machineconfig").exists():
|
|
12
12
|
code = """
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
uv self update
|
|
14
|
+
cd ~/code/machineconfig
|
|
15
|
+
git pull
|
|
16
|
+
uv tool install --upgrade --editable $HOME/code/machineconfig
|
|
17
17
|
"""
|
|
18
18
|
else:
|
|
19
19
|
code = """
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
uv self update
|
|
21
|
+
uv tool install --upgrade machineconfig
|
|
22
22
|
"""
|
|
23
23
|
import platform
|
|
24
24
|
if platform.system() == "Windows":
|
|
25
|
-
from machineconfig.utils.code import run_shell_script_after_exit
|
|
26
|
-
run_shell_script_after_exit(code)
|
|
25
|
+
# from machineconfig.utils.code import run_shell_script_after_exit
|
|
26
|
+
# run_shell_script_after_exit(code)
|
|
27
|
+
print(f'please run {code} in powershell to update machineconfig')
|
|
27
28
|
else:
|
|
28
29
|
from machineconfig.utils.code import run_shell_script
|
|
29
30
|
run_shell_script(code)
|
|
@@ -40,9 +41,9 @@ def install(no_copy_assets: Annotated[bool, typer.Option("--no-assets-copy", "-n
|
|
|
40
41
|
else:
|
|
41
42
|
import platform
|
|
42
43
|
if platform.system() == "Windows":
|
|
43
|
-
run_shell_script(r"""& "$HOME\.local\bin\uv.exe" tool install --upgrade "machineconfig>=6.
|
|
44
|
+
run_shell_script(r"""& "$HOME\.local\bin\uv.exe" tool install --upgrade "machineconfig>=6.58" """)
|
|
44
45
|
else:
|
|
45
|
-
run_shell_script("""$HOME/.local/bin/uv tool install --upgrade "machineconfig>=6.
|
|
46
|
+
run_shell_script("""$HOME/.local/bin/uv tool install --upgrade "machineconfig>=6.58" """)
|
|
46
47
|
from machineconfig.profile.create_shell_profile import create_default_shell_profile
|
|
47
48
|
if not no_copy_assets:
|
|
48
49
|
create_default_shell_profile() # involves copying assets too
|
|
@@ -67,7 +68,7 @@ def navigate():
|
|
|
67
68
|
path = Path(navigator.__file__).resolve().parent.joinpath("devops_navigator.py")
|
|
68
69
|
from machineconfig.utils.code import run_shell_script
|
|
69
70
|
if Path.home().joinpath("code/machineconfig").exists(): executable = f"""--project "{str(Path.home().joinpath("code/machineconfig"))}" --with textual"""
|
|
70
|
-
else: executable = """--with "machineconfig>=6.
|
|
71
|
+
else: executable = """--with "machineconfig>=6.58,textual" """
|
|
71
72
|
run_shell_script(f"""uv run {executable} {path}""")
|
|
72
73
|
|
|
73
74
|
|
|
File without changes
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# mkdir ~/data/local
|
|
6
6
|
# sudo mount -o nolock,noatime,nodiratime,proto=tcp,timeo=600,retrans=2,noac alex-p51s-5:/home/alex/data/local ./data/local
|
|
7
7
|
|
|
8
|
-
uv run --python 3.14 --with "machineconfig>=6.
|
|
8
|
+
uv run --python 3.14 --with "machineconfig>=6.58" python -m machineconfig.scripts.python.mount_nfs
|
|
9
9
|
# Check if remote server is reachable and share folder exists
|
|
10
10
|
if ! ping -c 1 "$remote_server" &> /dev/null; then
|
|
11
11
|
echo "💥 Error: Remote server $remote_server is not reachable."
|
|
@@ -7,7 +7,7 @@ $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.58" 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,4 +1,15 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
+
# Record script start time for runtime measurement
|
|
3
|
+
# _START_TIME_NS=$(date +%s%N)
|
|
4
|
+
# _show_elapsed() {
|
|
5
|
+
# local _end_ns _elapsed_ns _secs _ms
|
|
6
|
+
# _end_ns=$(date +%s%N)
|
|
7
|
+
# _elapsed_ns=$((_end_ns - _START_TIME_NS))
|
|
8
|
+
# _secs=$((_elapsed_ns / 1000000000))
|
|
9
|
+
# _ms=$((_elapsed_ns / 1000000 % 1000))
|
|
10
|
+
# printf "Script runtime: %d.%03d seconds\n" "$_secs" "$_ms"
|
|
11
|
+
# }
|
|
12
|
+
|
|
2
13
|
# 🛠️ Bash Shell Configuration and Initialization
|
|
3
14
|
|
|
4
15
|
add_to_path_if_not_already() {
|
|
@@ -75,3 +86,6 @@ eval "$(starship init bash)"
|
|
|
75
86
|
# from https://github.com/cantino/mcfly
|
|
76
87
|
eval "$(mcfly init bash)"
|
|
77
88
|
|
|
89
|
+
# Show elapsed runtime
|
|
90
|
+
# _show_elapsed
|
|
91
|
+
|
|
@@ -40,18 +40,18 @@ function f { fire @args }
|
|
|
40
40
|
function r { croshell @args }
|
|
41
41
|
function u { utils @args }
|
|
42
42
|
|
|
43
|
-
try {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
catch {
|
|
53
|
-
|
|
54
|
-
}
|
|
43
|
+
# try {
|
|
44
|
+
# Set-Alias -Name gcs -Value {gh copilot suggest -t shell}
|
|
45
|
+
# Set-Alias -Name gcg -Value {gh copilot suggest -t git}
|
|
46
|
+
# Set-Alias -Name gce -Value {gh copilot explain}
|
|
47
|
+
# # Check for conflicts
|
|
48
|
+
# # Get-Command gcs -ErrorAction SilentlyContinue
|
|
49
|
+
# # Get-Command gcg -ErrorAction SilentlyContinue
|
|
50
|
+
# # Get-Command gce -ErrorAction SilentlyContinue
|
|
51
|
+
# }
|
|
52
|
+
# catch {
|
|
53
|
+
# # Do nothing
|
|
54
|
+
# }
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
# patches ===========================================================
|
|
@@ -66,3 +66,11 @@ try {
|
|
|
66
66
|
catch {
|
|
67
67
|
# Do nothing
|
|
68
68
|
}
|
|
69
|
+
|
|
70
|
+
try {
|
|
71
|
+
# Initialize Starship prompt
|
|
72
|
+
Invoke-Expression (&starship init powershell)
|
|
73
|
+
}
|
|
74
|
+
catch {
|
|
75
|
+
# Do nothing
|
|
76
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Record script start time for runtime measurement
|
|
3
|
+
# _START_TIME_NS=$(date +%s%N)
|
|
4
|
+
# _show_elapsed() {
|
|
5
|
+
# local _end_ns _elapsed_ns _secs _ms
|
|
6
|
+
# _end_ns=$(date +%s%N)
|
|
7
|
+
# _elapsed_ns=$((_end_ns - _START_TIME_NS))
|
|
8
|
+
# _secs=$((_elapsed_ns / 1000000000))
|
|
9
|
+
# _ms=$((_elapsed_ns / 1000000 % 1000))
|
|
10
|
+
# printf "Script runtime: %d.%03d seconds\n" "$_secs" "$_ms"
|
|
11
|
+
# }
|
|
12
|
+
|
|
13
|
+
# 🛠️ Bash Shell Configuration and Initialization
|
|
14
|
+
|
|
15
|
+
add_to_path_if_not_already() {
|
|
16
|
+
for dir in "$@"; do
|
|
17
|
+
if [[ ! $PATH =~ (^|:)"${dir}"(:|$) ]]; then
|
|
18
|
+
export PATH="$PATH:${dir}"
|
|
19
|
+
fi
|
|
20
|
+
done
|
|
21
|
+
}
|
|
22
|
+
CONFIG_ROOT="$HOME/.config/machineconfig"
|
|
23
|
+
|
|
24
|
+
# 📂 Add directories to PATH
|
|
25
|
+
add_to_path_if_not_already \
|
|
26
|
+
"$CONFIG_ROOT/scripts/linux" \
|
|
27
|
+
"$HOME/dotfiles/scripts/linux" \
|
|
28
|
+
"$HOME/.local/bin" \
|
|
29
|
+
"$HOME/.cargo/bin" \
|
|
30
|
+
"/usr/games"
|
|
31
|
+
# this way, if the script was run multiple times, e.g. due to nested shells in zellij, there will be no duplicates in the path
|
|
32
|
+
# export DISPLAY=localhost:0.0 # xming server
|
|
33
|
+
# "$HOME/.nix-profile/bin" \
|
|
34
|
+
# "/home/linuxbrew/.linuxbrew/bin" \
|
|
35
|
+
|
|
36
|
+
# echo "Sourcing scripts ..."
|
|
37
|
+
. $CONFIG_ROOT/settings/broot/br.sh
|
|
38
|
+
. $CONFIG_ROOT/settings/lf/linux/exe/lfcd.sh
|
|
39
|
+
. $CONFIG_ROOT/settings/tere/terecd.sh
|
|
40
|
+
# check if file in ~/dotfiles/machineconfig/init_linux.sh exists and source it
|
|
41
|
+
if [ -f "$HOME/dotfiles/machineconfig/init_linux.sh" ]; then
|
|
42
|
+
# echo "Sourcing $HOME/dotfiles/machineconfig/init_linux.sh"
|
|
43
|
+
source "$HOME/dotfiles/machineconfig/init_linux.sh"
|
|
44
|
+
fi
|
|
45
|
+
|
|
46
|
+
# set alias l to lsd -la
|
|
47
|
+
alias l='lsd -la'
|
|
48
|
+
alias d=devops
|
|
49
|
+
alias c=cloud
|
|
50
|
+
alias a=agents
|
|
51
|
+
alias s=sessions
|
|
52
|
+
alias ff=ftpx
|
|
53
|
+
alias f=fire
|
|
54
|
+
alias r=croshell
|
|
55
|
+
alias u=utils
|
|
56
|
+
|
|
57
|
+
# alias gcs='gh copilot suggest -t shell'
|
|
58
|
+
# alias gcg='gh copilot suggest -t git'
|
|
59
|
+
# alias gce='gh copilot explain'
|
|
60
|
+
# Check uniqueness of aliases
|
|
61
|
+
# type gcs
|
|
62
|
+
# type gcg
|
|
63
|
+
# type gce
|
|
64
|
+
# gcd() {
|
|
65
|
+
# x=$(history -p '!!')
|
|
66
|
+
# y=$(eval "$x" 2>&1)
|
|
67
|
+
# gh copilot explain "Input command is: $x The output is this: $y"
|
|
68
|
+
# }
|
|
69
|
+
|
|
70
|
+
# 📦 Node Version Manager
|
|
71
|
+
# export NVM_DIR="$HOME/.nvm"
|
|
72
|
+
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
73
|
+
# [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
# https://github.com/atuinsh/atuin
|
|
77
|
+
# eval "$(atuin init bash)"
|
|
78
|
+
|
|
79
|
+
# source /home/alex/.config/broot/launcher/bash/br
|
|
80
|
+
# eval "$(thefuck --alias)"
|
|
81
|
+
# from https://github.com/ajeetdsouza/zoxide
|
|
82
|
+
eval "$(zoxide init zsh)"
|
|
83
|
+
# from https://github.com/starship/starship
|
|
84
|
+
eval "$(starship init zsh)"
|
|
85
|
+
# LEVE THIS IN THE END TO AVOID EXECUTION FAILURE OF THE REST OF THE SCRIPT
|
|
86
|
+
# from https://github.com/cantino/mcfly
|
|
87
|
+
eval "$(mcfly init zsh)"
|
|
88
|
+
|
|
89
|
+
# Show elapsed runtime
|
|
90
|
+
# _show_elapsed
|
|
91
|
+
|
|
@@ -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.58" 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.58" mcfg $args
|
|
6
6
|
}
|
|
7
7
|
function d { mcfg devops @args }
|
|
8
8
|
function c { mcfg cloud @args }
|
machineconfig/utils/ssh.py
CHANGED
|
@@ -7,7 +7,7 @@ from machineconfig.utils.terminal import Response, MACHINE
|
|
|
7
7
|
from machineconfig.utils.accessories import pprint
|
|
8
8
|
|
|
9
9
|
UV_RUN_CMD = "$HOME/.local/bin/uv run" if platform.system() != "Windows" else """& "$env:USERPROFILE/.local/bin/uv" run"""
|
|
10
|
-
MACHINECONFIG_VERSION = "machineconfig>=6.
|
|
10
|
+
MACHINECONFIG_VERSION = "machineconfig>=6.58"
|
|
11
11
|
DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
|
|
12
12
|
|
|
13
13
|
|
|
@@ -97,7 +97,7 @@ machineconfig/profile/bash_shell_profiles.md,sha256=mio0xkMTwO-F3fikWIfgcdQaPCmQ
|
|
|
97
97
|
machineconfig/profile/create_helper.py,sha256=_iNeuwmcEGTx6sf_f40JKHfOCuJRZQRpyE8Fo_3Q6bI,1519
|
|
98
98
|
machineconfig/profile/create_links.py,sha256=K7T2bq08GZP9fo2NzCOE0pojAgQDe0Ofe7fNfbQlQpw,14219
|
|
99
99
|
machineconfig/profile/create_links_export.py,sha256=6LW4ZzHhQaox6W-rAuw3_gENTVKmOXA8_JfVDA-Mfws,3294
|
|
100
|
-
machineconfig/profile/create_shell_profile.py,sha256=
|
|
100
|
+
machineconfig/profile/create_shell_profile.py,sha256=EC4HQMa-Q9RVU8BkhS-bAiui2XZQf8JVTDReB5wLM2k,10196
|
|
101
101
|
machineconfig/profile/mapper.toml,sha256=CGGKi4VbRo1-AuHU7w1g94NbAys0pxn6fI-2l-lUmY0,12469
|
|
102
102
|
machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
|
|
103
103
|
machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
|
|
@@ -125,7 +125,7 @@ machineconfig/scripts/python/cloud.py,sha256=yAD6ciKiEtv2CH3g2NScDK5cpCZQi7Vu8yy
|
|
|
125
125
|
machineconfig/scripts/python/croshell.py,sha256=I8564dNdu41Kmmz6uD1sGX4_x6VzE6M7oUmuEGRMh4A,8075
|
|
126
126
|
machineconfig/scripts/python/devops.py,sha256=Lv4d-UlyOREj4VTcu_pxswYo54Mawe3XGeKjreGQDYg,2222
|
|
127
127
|
machineconfig/scripts/python/devops_navigator.py,sha256=5Cm384D4S8_GsvMzTwr0C16D0ktf8_5Mk5bEJncwDO8,237
|
|
128
|
-
machineconfig/scripts/python/entry.py,sha256=
|
|
128
|
+
machineconfig/scripts/python/entry.py,sha256=liCf186Msa6R-EjcQ0I6K80Km7Wi8qckJB6rXIHeHU0,2488
|
|
129
129
|
machineconfig/scripts/python/fire_jobs.py,sha256=My7sFn1R2vh21uIHGfNppgX99WTEitCFgJ1MSasBUOQ,13597
|
|
130
130
|
machineconfig/scripts/python/ftpx.py,sha256=vm4QNJA0z1Vu-85wFliGNoDHMZZ-Yy8zQACL6x7Wo6U,9760
|
|
131
131
|
machineconfig/scripts/python/interactive.py,sha256=zt3g6nGKR_Y5A57UnR4Y5-JpLzrpnCOSaqU1bnaikK0,11666
|
|
@@ -163,7 +163,7 @@ machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1
|
|
|
163
163
|
machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
164
164
|
machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
|
|
165
165
|
machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
|
|
166
|
-
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=
|
|
166
|
+
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=lY3ePCWRpqydtXQPTIsO9XLBUGAdZCeL8OR5lCgGH7E,6932
|
|
167
167
|
machineconfig/scripts/python/helpers_cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
168
|
machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=OV1w3ajFVFs6FJytjIPOntYB_aW2ywGohKi73V4Dm2Y,8691
|
|
169
169
|
machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=GA-bxXouUmknk9fyQAsPT-Xl3RG9-yBed71a2tu9Pig,4914
|
|
@@ -179,12 +179,12 @@ machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=HfJReOusTPh
|
|
|
179
179
|
machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
180
180
|
machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
181
181
|
machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
-
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=
|
|
182
|
+
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=BXR6pbu_xbPmdI9pyBLCOEWbHHHSSmYvjckYVeu6UD0,7218
|
|
183
183
|
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=rjTys4FNf9_feP9flWM7Zvq17dxWmetSiGaHPxp25nk,2737
|
|
184
184
|
machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
|
|
185
185
|
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=B5Xa9pV5MdC4vPo3EmKaHvNMlThsY3c5F92YPE5j3rI,4176
|
|
186
186
|
machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=Xwkv1adqHZvTfRSPWiqSK3PZ1XADyx3llw_YkbxaKyE,12505
|
|
187
|
-
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=
|
|
187
|
+
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=bDEvfTgMTf8b3m5SN1KDHXgU-W3AWAiSu5oXGxFCb3s,6225
|
|
188
188
|
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=q9pFJ6AxPuygMr3onMNOKEuuQHbVE_6Qoyo7xRT5FX0,4196
|
|
189
189
|
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
|
|
190
190
|
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=sCYKR6bXzr6DgVnQrCa_pjKdc7tOOY3T8h1A41UURBU,5066
|
|
@@ -193,6 +193,8 @@ machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=PJVPhfhXq8de
|
|
|
193
193
|
machineconfig/scripts/python/helpers_devops/devops_update_repos.py,sha256=kSln8_-Wn7Qu0NaKdt-QTN_bBVyTIAWHH8xVYKK-vCM,10133
|
|
194
194
|
machineconfig/scripts/python/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
195
|
machineconfig/scripts/python/helpers_devops/themes/choose_pwsh_theme.ps1,sha256=58gFOeynADHLTdk8zqEnndBtyNGrln0jvpo76O0UWTw,3136
|
|
196
|
+
machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.bash,sha256=ajz1GSNU9xYVrFEDSz6Xwg7amWQ_yvW75tQa1ZvRIWc,3
|
|
197
|
+
machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
198
|
machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py,sha256=pRXAGe2IpysYshsaF8CKEwHI8EGPtLcM8PtiAqM7vmM,3425
|
|
197
199
|
machineconfig/scripts/python/helpers_fire/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
200
|
machineconfig/scripts/python/helpers_fire/fire_agents_help_launch.py,sha256=GBhi9WvmQDwJOcF3sjvge5x5U7TUokcVo4K4CbEm-OI,5619
|
|
@@ -223,7 +225,7 @@ machineconfig/scripts/python/helpers_navigator/main_app.py,sha256=R1vOBMUKaiFHOg
|
|
|
223
225
|
machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wdm7YpDBtfhwcPnSqDPFrV2LqbcSBWMT4,414
|
|
224
226
|
machineconfig/scripts/python/helpers_repos/action.py,sha256=9AxWy8mB9HFeV5t11-qD_l-KA5jkUmm0pXVKT1L6-Qk,14894
|
|
225
227
|
machineconfig/scripts/python/helpers_repos/clone.py,sha256=UULEG5xJuXlPGU0nqXH6U45jA9DOFqLw8B4iPytCwOQ,5471
|
|
226
|
-
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=
|
|
228
|
+
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=HcyZi4QMFRUb6JzAagwIoA2yZdQpcS76O-IruqSek0c,10408
|
|
227
229
|
machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
|
|
228
230
|
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=vSDtrF4829jziwp6WZmGt9G8MJ9jY4hfXqtf0vhkYSE,607
|
|
229
231
|
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=WYEFGUJp9HWImlFjbs_hiFZrUqM_KEYm5VvSUjWd04I,2810
|
|
@@ -239,7 +241,7 @@ machineconfig/scripts/python/nw/add_ssh_key.py,sha256=9JLmWu8pE7PAL5VuCFd19iVEdC
|
|
|
239
241
|
machineconfig/scripts/python/nw/devops_add_identity.py,sha256=aPjcHbTLhxYwWYcandyAHdwuO15ZBu3fB82u6bI0tMQ,3773
|
|
240
242
|
machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=CkIl85hZLtG9k7yXLSzqi88YrilHV4hIUWHAPBwxWjw,8922
|
|
241
243
|
machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
|
|
242
|
-
machineconfig/scripts/python/nw/mount_nfs,sha256=
|
|
244
|
+
machineconfig/scripts/python/nw/mount_nfs,sha256=qUKfULsePlMttwPBrPwjpOYbEEpeJKz4epT6paQZYhY,1855
|
|
243
245
|
machineconfig/scripts/python/nw/mount_nfs.py,sha256=lOMDY4RS7tx8gsCazVR5tNNwFbaRyO2PJlnwBCDQgCM,3573
|
|
244
246
|
machineconfig/scripts/python/nw/mount_nw_drive,sha256=BqjGBCbwe5ZAsZDO3L0zHhh_gJfZy1CYOcqXA4Y-WkQ,2262
|
|
245
247
|
machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
|
|
@@ -256,7 +258,7 @@ machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqk
|
|
|
256
258
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
257
259
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
258
260
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
259
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
261
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=ogiozOazBkCv2SQNnvv06aGPF5kC3p3bTXMrZnqkps0,322
|
|
260
262
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
261
263
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
262
264
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -327,7 +329,7 @@ machineconfig/settings/rofi/config.rasi,sha256=nDX5B8wdXQYF1fwiOTBRJUI4l_gQbYaLa
|
|
|
327
329
|
machineconfig/settings/rofi/config_default.rasi,sha256=rTfKnC-bZuWX1l-lWQACCUOE1ShhkfykAxtXX9PlQHE,4694
|
|
328
330
|
machineconfig/settings/shells/alacritty/alacritty.toml,sha256=EbL-2Y4QunW1pvRWB2yuLCw8MMPONheJr5LFoWRieUQ,871
|
|
329
331
|
machineconfig/settings/shells/alacritty/alacritty.yml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
|
-
machineconfig/settings/shells/bash/init.sh,sha256=
|
|
332
|
+
machineconfig/settings/shells/bash/init.sh,sha256=sSocJ3oyi47Oe_Ryg3VMjWRzRsV9n1NCo15nW7MB9XE,2695
|
|
331
333
|
machineconfig/settings/shells/hyper/.hyper.js,sha256=h-HqeYlvPvPD4Ee7828Cxo87uVkzbMGJFqXTZIWoegw,8884
|
|
332
334
|
machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
333
335
|
machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -335,12 +337,13 @@ machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=OJ3
|
|
|
335
337
|
machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmgGiS-CI-_-lFvhD5A4,52870
|
|
336
338
|
machineconfig/settings/shells/nushell/config.nu,sha256=ug0E0NXNlCzgStScFN6VTsAkUaOTPJZB69P-LS5L2VE,1047
|
|
337
339
|
machineconfig/settings/shells/nushell/env.nu,sha256=4VmaXb-qP6qnMD5TPzkXMLFNlB5QC4l9HEzCvXZE2GQ,315
|
|
338
|
-
machineconfig/settings/shells/pwsh/init.ps1,sha256=
|
|
340
|
+
machineconfig/settings/shells/pwsh/init.ps1,sha256=N2sh3ByaQWIF6J7Pg0_pIqbIG9iy4wJiUSKhtfns4ao,1968
|
|
339
341
|
machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
342
|
machineconfig/settings/shells/starship/starship.toml,sha256=5rQTY7ZpKnrnhgu2Y9OJKUYMz5lPLIftO1p1VRuVZwQ,1150
|
|
341
343
|
machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
|
|
342
344
|
machineconfig/settings/shells/wezterm/wezterm.lua,sha256=ZaUFqVNibGD5cyzlnYhIMAakTig6P7qggi5hvHGASPk,6210
|
|
343
345
|
machineconfig/settings/shells/wt/settings.json,sha256=G3MzbSfkNDoCbFfKKuS5wuSWsMff4oj6s6m-iXryNz8,10353
|
|
346
|
+
machineconfig/settings/shells/zsh/init.sh,sha256=X6HP0LKoLCOUpKetWA3ZwPaqz_o31m66SbGS328EbwU,2692
|
|
344
347
|
machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
|
|
345
348
|
machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
|
|
346
349
|
machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
|
|
@@ -372,7 +375,7 @@ machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKG
|
|
|
372
375
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
373
376
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
374
377
|
machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
375
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
378
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=L6TV1jNDvmXmrLi6MdzRrpTme7CXeJeqZVT3741s2T4,462
|
|
376
379
|
machineconfig/setup_mac/__init__.py,sha256=Q1waupi5vCBroLqc8Rtnw69_7jLnm2Cs7_zH_GSZgMs,616
|
|
377
380
|
machineconfig/setup_mac/apps.sh,sha256=R0N6fBwLCzwy4qAormyMerXXXrHazibSkY6NrNOpTQU,2772
|
|
378
381
|
machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
|
|
@@ -386,7 +389,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
|
|
|
386
389
|
machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
|
|
387
390
|
machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
|
|
388
391
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
389
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
392
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=auzH0VkM5hAFTu7BqE6_8OADkWZoXlhDrbkStWn5Q3o,579
|
|
390
393
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
391
394
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
392
395
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -404,7 +407,7 @@ machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,
|
|
|
404
407
|
machineconfig/utils/scheduler.py,sha256=44CASABJg3epccxhAwv2CX7TVgZh6zVy3K4vqHKTuf4,14228
|
|
405
408
|
machineconfig/utils/scheduling.py,sha256=6x5zLA7sY5gohrEtN6zGrXIqNFasMoyBfwLcOjrjiME,11109
|
|
406
409
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
407
|
-
machineconfig/utils/ssh.py,sha256=
|
|
410
|
+
machineconfig/utils/ssh.py,sha256=tWw5xL16VyaqV7nXWbDO6DXvUyJFOqE17JzKww3ECvs,39390
|
|
408
411
|
machineconfig/utils/terminal.py,sha256=IlmOByfQG-vjhaFFxxzU5rWzP5_qUzmalRfuey3PAmc,11801
|
|
409
412
|
machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
|
|
410
413
|
machineconfig/utils/upgrade_packages.py,sha256=mSFyKvB3JhHte_x1dtmEgrJZCAXgTUQoaJUSx1OXQ3Y,4145
|
|
@@ -433,8 +436,8 @@ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoS
|
|
|
433
436
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
434
437
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
435
438
|
machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
436
|
-
machineconfig-6.
|
|
437
|
-
machineconfig-6.
|
|
438
|
-
machineconfig-6.
|
|
439
|
-
machineconfig-6.
|
|
440
|
-
machineconfig-6.
|
|
439
|
+
machineconfig-6.58.dist-info/METADATA,sha256=Yygzm5s0pOWgv1CMKtcaRVH8Q4haic0U-4ssr35e79g,2928
|
|
440
|
+
machineconfig-6.58.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
441
|
+
machineconfig-6.58.dist-info/entry_points.txt,sha256=NTW7hbUlpt5Vx9DdQrONLkYMCuBXpvYh1dt0AtlGxeI,466
|
|
442
|
+
machineconfig-6.58.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
443
|
+
machineconfig-6.58.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|