bcb5fe71979922871dca19d20c5001caf1d57b29
Benjamin Renard Initial commit

Benjamin Renard authored 12 years ago

1) #!/bin/bash
2) 
3) cd $( dirname $0 )
4) dir=$( pwd )
5) 
6) files="
7) /etc/mantis-smtp.conf
8) /etc/init.d/mantis-smtp
9) /usr/bin/mantis-smtp
10) /usr/share/mantis-smtp
11) "
12) 
13) function install_file() {
14) 	from=$1
15) 	dst=$2
16) 	if [ -e "$dst" ]
17) 	then
18) 		echo -e "\t- backuping $file in ${file}.old"
19) 		mv $dst $dst.old
20) 	fi
21) 	echo -e "\t- $file"
22) 	ln -s "$from" "$dst"
23) }
24) 
25) 
26) case "$1" in
27) 	install-req)
28) 		echo "Install requirements :"
29) 
30) 		if [ -f /usr/bin/apt-get ]
31) 		then
Benjamin Renard install.sh : added python-h...

Benjamin Renard authored 12 years ago

32) 			apt-get install python-suds python-simplejson python-html2text
Benjamin Renard Initial commit

Benjamin Renard authored 12 years ago

33) 		elif [ -x /usr/bin/yum ]
34) 		then
Benjamin Renard install.sh : added python-h...

Benjamin Renard authored 12 years ago

35) 			yum install python-suds python-simplejson python-html2text