-
-
Notifications
You must be signed in to change notification settings - Fork 801
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #549 from public-void-ryan/patch-1
typos
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
|
||
# Luke's Auto Rice Boostrapping Script (LARBS) | ||
# Luke's Auto Rice Bootstrapping Script (LARBS) | ||
# by Luke Smith <[email protected]> | ||
# License: GNU GPLv3 | ||
|
||
|
@@ -34,7 +34,7 @@ welcomemsg() { | |
} | ||
|
||
getuserandpass() { | ||
# Prompts user for new username an password. | ||
# Prompts user for new username and password. | ||
name=$(whiptail --inputbox "First, please enter a name for the user account." 10 60 3>&1 1>&2 2>&3 3>&1) || exit 1 | ||
while ! echo "$name" | grep -q "^[a-z_][a-z0-9_-]*$"; do | ||
name=$(whiptail --nocancel --inputbox "Username not valid. Give a username beginning with a letter, with only lowercase letters, - or _." 10 60 3>&1 1>&2 2>&3 3>&1) | ||
|