machineconfig 4.8__py3-none-any.whl → 4.91__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.

Files changed (25) hide show
  1. machineconfig/jobs/installer/custom_dev/winget.py +1 -0
  2. machineconfig/jobs/installer/installer_data.json +2403 -0
  3. machineconfig/jobs/installer/package_groups.py +157 -0
  4. machineconfig/scripts/linux/agents +2 -0
  5. machineconfig/scripts/linux/sessions +2 -0
  6. machineconfig/scripts/python/{fire_agents.py → agents.py} +7 -0
  7. machineconfig/scripts/python/croshell.py +13 -27
  8. machineconfig/scripts/python/devops.py +0 -13
  9. machineconfig/scripts/python/devops_devapps_install.py +148 -107
  10. machineconfig/scripts/python/interactive.py +30 -76
  11. machineconfig/scripts/python/{fire_jobs_layout_helper.py → sessions.py} +7 -0
  12. machineconfig/utils/installer.py +40 -16
  13. machineconfig/utils/installer_utils/github_release_bulk.py +2 -12
  14. machineconfig/utils/installer_utils/installer_abc.py +56 -60
  15. machineconfig/utils/schemas/installer/installer_types.py +0 -1
  16. {machineconfig-4.8.dist-info → machineconfig-4.91.dist-info}/METADATA +1 -1
  17. {machineconfig-4.8.dist-info → machineconfig-4.91.dist-info}/RECORD +20 -21
  18. {machineconfig-4.8.dist-info → machineconfig-4.91.dist-info}/entry_points.txt +2 -0
  19. machineconfig/jobs/installer/packages_custom_dev.json +0 -380
  20. machineconfig/jobs/installer/packages_custom_essential.json +0 -39
  21. machineconfig/jobs/installer/packages_github_dev.json +0 -1127
  22. machineconfig/jobs/installer/packages_github_essential.json +0 -787
  23. machineconfig/setup_linux/web_shortcuts/ascii_art.sh +0 -93
  24. {machineconfig-4.8.dist-info → machineconfig-4.91.dist-info}/WHEEL +0 -0
  25. {machineconfig-4.8.dist-info → machineconfig-4.91.dist-info}/top_level.txt +0 -0
@@ -1,93 +0,0 @@
1
- #!/usr/bin/bash
2
- #=======================================================================
3
- # 🎨 ASCII ART TOOLS INSTALLATION SCRIPT
4
- #=======================================================================
5
- # This script installs various ASCII art and text formatting tools
6
-
7
- echo """#=======================================================================
8
- 🖼️ ASCII ART TOOLS | Installing terminal visualization packages
9
- #=======================================================================
10
- """
11
-
12
- # Alternate Nix installation method (commented reference)
13
- # if [ -f "$HOME/.nix-profile/bin/nix-env" ]; then
14
- # echo """# #=======================================================================
15
- # 📦 NIX PACKAGE INSTALLATION | Using Nix package manager
16
- # #=======================================================================
17
- # """
18
- # ~/.nix-profile/bin/nix-env -iA nixpkgs.cowsay || true
19
- # ~/.nix-profile/bin/nix-env -iA nixpkgs.lolcat || true
20
- # ~/.nix-profile/bin/nix-env -iA nixpkgs.boxes || true
21
- # ~/.nix-profile/bin/nix-env -iA nixpkgs.figlet || true
22
- # else
23
-
24
- # Check if cowsay is installed, if not install it
25
- if [ ! -f "/usr/games/cowsay" ]; then
26
- echo """ #=======================================================================
27
- 🐮 INSTALLING COWSAY | ASCII art animals with speech bubbles
28
- #=======================================================================
29
-
30
- 📋 Usage examples:
31
- $ cowsay "Hello World"
32
- $ cowsay -l (to list available figures)
33
- $ cowsay -f tux "Linux rocks!"
34
- """
35
- sudo nala install cowsay -y || true
36
- fi
37
-
38
- # Check if lolcat is installed, if not install it
39
- if [ ! -f "/usr/games/lolcat" ]; then
40
- echo """ #=======================================================================
41
- 🌈 INSTALLING LOLCAT | Rainbow text colorizer for terminal
42
- #=======================================================================
43
-
44
- 📋 Usage examples:
45
- $ echo "Hello World" | lolcat
46
- $ cowsay "Rainbow cow" | lolcat
47
- """
48
- sudo nala install lolcat -y || true
49
- fi
50
-
51
- # Check if boxes is installed, if not install it
52
- if [ ! -f "/usr/bin/boxes" ]; then
53
- echo """ #=======================================================================
54
- 📦 INSTALLING BOXES | ASCII art box drawing around text
55
- #=======================================================================
56
-
57
- 📋 Usage examples:
58
- $ echo "Hello World" | boxes
59
- $ echo "Custom box" | boxes -d stone
60
- $ boxes -l (to list available box styles)
61
- """
62
- sudo nala install boxes -y || true
63
- fi
64
-
65
- # Check if figlet is installed, if not install it
66
- if [ ! -f "/usr/bin/figlet" ]; then
67
- echo """ #=======================================================================
68
- 📝 INSTALLING FIGLET | Large ASCII text generator
69
- #=======================================================================
70
-
71
- 📋 Usage examples:
72
- $ figlet "Hello World"
73
- $ showfigfonts (to view available fonts)
74
- $ figlet -f slant "Custom font"
75
- """
76
- sudo nala install figlet -y || true
77
- fi
78
-
79
- echo """#=======================================================================
80
- ✅ INSTALLATION COMPLETE | All ASCII art tools installed successfully
81
- #=======================================================================
82
-
83
- 🎨 Installed tools:
84
- ✓ cowsay - ASCII art animals with text
85
- ✓ lolcat - Rainbow text colorizer
86
- ✓ boxes - Text in ASCII art boxes
87
- ✓ figlet - Large ASCII text generator
88
-
89
- 💡 Try combining them:
90
- $ figlet "Cool text" | boxes | lolcat
91
- $ cowsay -f tux "Linux" | lolcat
92
- """
93
- # fi