DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ B T

⟦d6b185700⟧ TextFile

    Length: 1644 (0x66c)
    Types: TextFile
    Names: »B«

Derivation

└─⟦516dceb10⟧ Bits:30000751 8mm tape, Rational 1000, RCI_VADS
    └─ ⟦9a14c9417⟧ »DATA« 
        └─⟦this⟧ 

TextFile

separate (M68k_Sunos_Vdx)
function Get_Telnet_Info return Tc.Object is

    Error_Pattern_List : constant Tc.Pattern_List :=
       (1 => Tc.Build  
                (Pattern_String => "error:",  
                 For_Target     => T_Name));

    Warning_Pattern_List : constant Tc.Pattern_List :=
       (1 => Tc.Build  
                (Pattern_String => "warning:",  
                 For_Target     => T_Name));


    Tc_Characteristics : Tc.Object :=
       Tc.Build  
          (Username_Prompt          => "login: ",
           Username_Failure         => "",
           Password_Prompt          => "password:",  
           Password_Failure         => "Login Incorrect",
           Command_Prompt           => "$ ",
           Prompt1                  => "",
           Prompt2                  => "",
           Prompt3                  => "",
           Prompt4                  => "",
           Check_Status_Of_Commands => True,
           Status_Command           => "echo $?",
           Status_Code_Offset       => 1,
           Status_Code_Length       => 1,
           Dir_Command              => "ls",
           Initial_Command          =>  
              "/bin/sh -c 'PS1=""$ "" ; export PS1; /bin/sh'",
           Transmit_Before_Login    => "",
           Transmit_After_Login     => ((1 => Ascii.Cr) & (2 => Ascii.Cr) &
                                        (3 => Ascii.Cr) & (4 => Ascii.Cr)),
           Error_Pattern_List       => Error_Pattern_List,
           Warning_Pattern_List     => Warning_Pattern_List,
           For_Target               => T_Name);

begin
    return Tc_Characteristics;
end Get_Telnet_Info;