From Fedora Project Wiki

Revision as of 15:35, 4 September 2009 by Jlaska (talk | contribs) (Add header)

QA.png


The procedure for adding a test system as a autotest client is described below. This example requires a working autotest server installed and configured.

Add Server

First, you must add the test system to the autotest database

  1. Direct your web browser to your autotest server
  2. Click Admin interface
  3. Select Hosts
  4. Select Add host
  5. Enter a valid hostname and select appropriate labels for the system. For information on the labels AutoQA uses, see Managing autotest labels.
  6. When finished, click Save

Enable Login Access

The autotest server relies on passwordless ssh logins to communicate with test clients. The procedure below outlines a method for establishing passwordless ssh login.

  1. First, login to the autotest server using ssh
  2. Next, start a shell as the autotest user
    # su - autotest
  3. Now, install your public key in a remote machine’s authorized_keys file
    # ssh-copy-id -i $HOME/.ssh/id_rsa.pub root@client.example.com
  4. Finally, confirm that passwordless logins function as expected. When substituting your client hostname, the following command should not prompt for a password:
    # ssh root@client.example.com

For additional documentation, consult the autotest system administrator documentation.