|
1 | 1 | #!/bin/sh |
2 | 2 |
|
3 | 3 | #================================================================# |
4 | | -# GIT-SSH INITIALIZATION MODULE |
5 | | -# Functions for setting up and validating the Git-SSH system |
| 4 | +# GitSSH INITIALIZATION MODULE |
| 5 | +# Functions for setting up and validating the GitSSH system |
6 | 6 | #================================================================# |
7 | 7 |
|
8 | 8 | #================================================================# |
@@ -228,7 +228,7 @@ _validate_config() { |
228 | 228 |
|
229 | 229 | # Validate and repair configuration |
230 | 230 | git_ssh_validate() { |
231 | | - printf "Validating Git-SSH Configuration\n" |
| 231 | + printf "Validating GitSSH Configuration\n" |
232 | 232 | printf "================================\n" |
233 | 233 |
|
234 | 234 | issues_found=0 |
@@ -327,7 +327,7 @@ git_ssh_validate() { |
327 | 327 |
|
328 | 328 | # Initialize configuration files with default structure |
329 | 329 | git_ssh_init() { |
330 | | - printf "Initializing Git-SSH User Session Manager...\n" |
| 330 | + printf "Initializing GitSSH User Session Manager...\n" |
331 | 331 | printf "=============================================\n" |
332 | 332 |
|
333 | 333 | # Check and setup dependencies |
@@ -392,7 +392,7 @@ git_ssh_migrate() { |
392 | 392 | migration_needed=false |
393 | 393 |
|
394 | 394 | # Check for old format files (example) |
395 | | - old_config_file="$HOME/.git-ssh-config" |
| 395 | + old_config_file="$HOME/.GitSSH-config" |
396 | 396 | if [ -f "$old_config_file" ]; then |
397 | 397 | printf "Found old configuration file: %s\n" "$old_config_file" |
398 | 398 | migration_needed=true |
@@ -424,7 +424,7 @@ git_ssh_migrate() { |
424 | 424 |
|
425 | 425 | # Reset configuration to defaults |
426 | 426 | git_ssh_reset() { |
427 | | - printf "Reset Git-SSH Configuration\n" |
| 427 | + printf "Reset GitSSH Configuration\n" |
428 | 428 | printf "===========================\n" |
429 | 429 | printf "This will remove all configuration and start fresh\n" |
430 | 430 | printf "Are you sure? (y/N): " |
@@ -463,9 +463,9 @@ git_ssh_reset() { |
463 | 463 | # SYSTEM INFORMATION |
464 | 464 | #================================================================# |
465 | 465 |
|
466 | | -# Show system information relevant to Git-SSH |
| 466 | +# Show system information relevant to GitSSH |
467 | 467 | git_ssh_system_info() { |
468 | | - printf "Git-SSH System Information\n" |
| 468 | + printf "GitSSH System Information\n" |
469 | 469 | printf "==========================\n" |
470 | 470 |
|
471 | 471 | # Operating System |
|
0 commit comments