home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2007 September
/
PCWSEP07.iso
/
Software
/
Linux
/
Linux Mint 3.0 Light
/
LinuxMint-3.0-Light.iso
/
casper
/
filesystem.squashfs
/
usr
/
share
/
cli-common
/
gac-install
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-04-04
|
399 b
|
20 lines
#!/bin/bash
# Make sure the GAC file exists
if [ ! -x /usr/share/cli-common/runtimes.d/$1 ]; then
echo ! Cannot install GAC $1
exit 1
fi
# Make some useful noise
#echo "Installing packages in $1"
for file in /usr/share/cli-common/packages.d/*.installcligac
do
if [ -f $file ]; then
/usr/share/cli-common/gac-package-install \
$(basename $file .installcligac) \
$1
fi
done