Updating MAKE to send some tests to Remy

This commit is contained in:
Patrick Kloepfer 2019-06-06 14:44:49 -04:00
parent 49d81f333f
commit ba9a5a5af8
4 changed files with 10 additions and 2 deletions

View File

@ -6,8 +6,7 @@ Major updates have occured to the kernel and many of the APIs to support an enha
## Latest News 2018-11-10 ## Latest News 2018-11-10
My loneliness has been cured, new resources have signed onto the project. I welcome Patrick Kloepfer My loneliness has been cured, new resources have signed onto the project. I welcome Patrick Kloepfer who is helping with product management, recruitment, testing and feedback.
who is helping with product management, recruitment, testing and feedback.
## News 2018-09-06 ## News 2018-09-06

View File

@ -159,6 +159,8 @@ a2osx supports as many physical terminals as you have SSC cards and memory to lo
A2osX supports multiple internet connected terminals via a TELNETD server process. The TELNETD process supports VT-100 terminals, so you should set your Telnet client (i.e. PuTTY) to use VT-100 emulation. Of course you can use another Apple running A2osX and the TELNET client to connect to an Apple running A2osX and the TELNETD server. A2osX supports multiple internet connected terminals via a TELNETD server process. The TELNETD process supports VT-100 terminals, so you should set your Telnet client (i.e. PuTTY) to use VT-100 emulation. Of course you can use another Apple running A2osX and the TELNET client to connect to an Apple running A2osX and the TELNETD server.
Please note, if you are using Telnet Client Software such as PuTTY for Windows and see random garbled characters (odd graphics symbols), you may need to change your **Remote Character Set** to something other than **UTF-8**, such as **ISO-8859-1:1998 (Latin-1, West Europe)**.
## Hardware ## Hardware
### Hardware Requirements ### Hardware Requirements

Binary file not shown.

View File

@ -1,3 +1,4 @@
NEW NEW
PREFIX PREFIX
AUTO 4,1 AUTO 4,1
@ -8,8 +9,11 @@ AUTO 4,1
# #
ECHO "\f\n Admin: List System Users" ECHO "\f\n Admin: List System Users"
ECHO ECHO
ECHO "Got Here ";PAUSE
IF [ -D ${ROOT}ETC ] IF [ -D ${ROOT}ETC ]
ECHO "Got Here ETC True";PAUSE
ELSE ELSE
ECHO "Got Here ETC False";PAUSE
ECHO " Your ETC directory that should be in ${ROOT}" ECHO " Your ETC directory that should be in ${ROOT}"
ECHO " is missing. This directory is needed for the" ECHO " is missing. This directory is needed for the"
ECHO " operation of your system." ECHO " operation of your system."
@ -28,6 +32,7 @@ ELSE
EXIT EXIT
END END
FI FI
ECHO "Should Get Here right After ETC is True ";PAUSE
IF [ -F ${ROOT}ETC/PASSWD ] IF [ -F ${ROOT}ETC/PASSWD ]
ELSE ELSE
ECHO " Your PASSWD file is missing. It should be located in the" ECHO " Your PASSWD file is missing. It should be located in the"
@ -50,10 +55,12 @@ ELSE
EXIT EXIT
END END
FI FI
ECHO "Got Here ";PAUSE
# OK Now we can actually list the users! # OK Now we can actually list the users!
ECHO " UID GID User Full Name Home Directory" ECHO " UID GID User Full Name Home Directory"
ECHO " ----- ----- -------- ------------------------- -------------------------" ECHO " ----- ----- -------- ------------------------- -------------------------"
SET LINE = 7 SET LINE = 7
ECHO "Got Here ";PAUSE
FOR F IN `CAT ${ROOT}ETC/PASSWD` FOR F IN `CAT ${ROOT}ETC/PASSWD`
SET PWUSER = `CUT -S : -F 1 "${F}"` SET PWUSER = `CUT -S : -F 1 "${F}"`
SET PWUID = `CUT -S : -F 3 "${F}"` SET PWUID = `CUT -S : -F 3 "${F}"`