Sponsored Content
Full Discussion: Help with an install script
Top Forums Shell Programming and Scripting Help with an install script Post 302170632 by dhs23 on Tuesday 26th of February 2008 06:57:44 AM
Old 02-26-2008
Help with an install script

Hello all.

I have a script I have written which runs a silent install of Mcafee AV and ePO for Mac OS X.

The issue I am wondering about is what happens when the script launches the installers.

The script is fairly simple, and just invokes the shell installer for each app:

Code:
#! /bin/sh

# script to install Mcafee VirusScan and ePolicy Orchestrator 3.6

# cd to temp install directory

cd /tmp/Mcafee_Install/

# Launch AV installer

installer -pkg VirusScan.pkg -target /

# Sleep while AV installer completes install

sleep 60

# Next installs ePolicy Orchestrator

./cmdinstall 10.44.112.40:82

# Sleep while ePO installer completes.

sleep 120

# Reboot to complete install.

reboot

You'll notice that I have told the script to sleep after launching the installer for each app. My question is: "Is this necessary?"

My thinking was that once the script has launched the installer, that's a separate process and as far as I am aware, my script would simply continue with the second install immediately. I don't want both apps installing at the same time, or the system rebooting halfway through the second install, so I told the script to sleep for a moment, to give the installs a chance to complete.

Am I being silly here? Are the sleep commands necessary? Will the script wait for the install to complete before launching the next install, or rebooting in the case of the second install?

Any thoughts?

Cheers
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Can't install a soft with a script .sh

Hello ! I just want to install Oreon (it's a plugin for Nagios) but I can't, I have this error when I run the script install.sh # ./install.sh functions: 21: Syntax error: "(" unexpected Have you got an idea ? Tx (10 Replies)
Discussion started by: wappyboy
10 Replies

2. Shell Programming and Scripting

Install a cron from a Perl script

Hello Everyone, How do I go about if I want to install a cron from a Perl script? Please advice :) (2 Replies)
Discussion started by: garric
2 Replies

3. Shell Programming and Scripting

Install script

Hi, During an install script I modify the config file several times renamed as conffile.cfg_new. Each time I need to restore it to conffile.cfg. INSTALLDIR=/app/MyAPP USERNAME=bianca RESTORE='rename conffile.cfg_new conffile.cfg ${INSTALLDIR}/conffile.cfg_new' #example sed -e... (2 Replies)
Discussion started by: potro
2 Replies

4. UNIX for Advanced & Expert Users

Running Script after Preseed Install

Hello there, If you don't want to here the long version, but still want to answer my question, please skip down to THE BOTTOM! You can probably tell what I want to do already from the title, so I'll sum up what I have already done real quick: First off, for those that don't know, a preseed... (1 Reply)
Discussion started by: Curtor
1 Replies

5. Shell Programming and Scripting

Script to install jdk

Hi, I need a shell script that would do silent installation of jdk on a linux machine. Can anyone help me with this? Thanx Sunny (6 Replies)
Discussion started by: eamani_sun
6 Replies

6. Linux

install macbook pro fedora10 ???((<<if can install, how to install? >> ))

If may install can Tells everybody ??? (0 Replies)
Discussion started by: kzBSD
0 Replies

7. Shell Programming and Scripting

Install Script

Say I want to install x on 10 different machines. Is there a script that will do it for me install of going to each machines and doing it manually ? (6 Replies)
Discussion started by: ice2257
6 Replies

8. Shell Programming and Scripting

Help With Install Script

I have an installation script that my customer has been using for some time that exists on a DVD image I send to my customers. The DVD image I send to my customer has now reached the point of becoming multiple DVDs. My customer is in the habit of executing the installation script using the... (0 Replies)
Discussion started by: scotbuff
0 Replies

9. UNIX for Dummies Questions & Answers

Driver Install Script

Hi, I am faily new to linux and bash scripting. But essentially what I am trying to do is create a small bash script that will automatically install a driver I want. I can do it manually but I want to create a script so I won't forget, since it is an internet driver I won't be able to get help when... (0 Replies)
Discussion started by: dmacmillan
0 Replies
script(1)							   User Commands							 script(1)

NAME
script - make record of a terminal session SYNOPSIS
script [-a] [filename] DESCRIPTION
The script utility makes a record of everything printed on your screen. The record is written to filename. If no file name is given, the record is saved in the file typescript. See WARNINGS. The script command forks and creates a sub-shell, according to the value of $SHELL, and records the text from this session. The script ends when the forked shell exits or when Control-d is typed. OPTIONS
The following option is supported: -a Appends the session record to filename, rather than overwriting it. NOTES
script places everything that appears on the screen in filename, including prompts. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ |CSI |Enabled | +-----------------------------+-----------------------------+ SEE ALSO
attributes(5) WARNINGS
script can pose a security risk when used in directories that are writable by other users (for example, /tmp), especially when run by a privileged user, that is, root. Be sure that typescript is not a link before running script. SunOS 5.10 30 Jan 2004 script(1)
All times are GMT -4. The time now is 07:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy