#!/bin/sh # ############################################################################## # # @(#)C.solaris2 2.1 97/10/23 # # Specify vendor specific command paths and commands for the LADDIS tools # # The variables: PASSWD_FILE, FSTAB_FILE, GROUP_FILE, HOSTNAME_CMD, RSH_CMD # allow you to specify the LADDIS client command for use in running the # Remote Client Setup Utilities the clients. # # The default command/path options are implied if no values are assigned to # the variables. The variables and their meaning are as follows: # # PASSWD_FILE - Name of the client's passwd file. # FSTAB_FILE - Name of the client's fstab file. # GROUP_FILE - Name of the client's group file. # HOSTNAME_CMD - Client's hostname command. # RSH_CMD - Client's rsh command. # SHELL - Client's bourne shell (/bin/sh or /bin/sh5). # AWK_CMD - Client's awk command (/bin/sh -> awk or /bin/sh5 -> nawk). # PS_CMD - Client's ps command. # ECHO - The echo command. # ECHO_NONL - The echo command used for questions that no newline is # needed. This is used in conjunction with the parameter # NONL. The options are: ECHO_NONL="echo -n" with NONL="" or # ECHO_NONL="echo" with NONL="\c". # NONL - The no newline option for the echo command. # # PASSWD_FILE="/etc/passwd" FSTAB_FILE="/etc/fstab" GROUP_FILE="/etc/group" HOSTNAME_CMD="uname -n" RSH_CMD="rsh" SHELL="/bin/sh" AWK_CMD="awk" PS_CMD="ps -ef" ECHO="echo" ECHO_NONL="echo" NONL="\c" # export PASSWD_FILE FSTAB_FILE GROUP_FILE SHELL export HOSTNAME_CMD RSH_CMD export AWK_CMD PS_CMD ECHO NONL