diff options
author | James Meyer <james.meyer@operamail.com> | 2012-11-26 14:53:38 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-11-26 14:53:38 (GMT) |
commit | 19921178a861f4bb631f6ec05d19fcaebc5836a6 (patch) | |
tree | 2ac297a54dad219302261345254fd167c146aaa9 /abs/extra/foldingathome/foldingathome.install | |
parent | c4497a9290ec83a0472113d91cc369b82ba33b47 (diff) | |
download | linhes_pkgbuild-19921178a861f4bb631f6ec05d19fcaebc5836a6.zip linhes_pkgbuild-19921178a861f4bb631f6ec05d19fcaebc5836a6.tar.gz linhes_pkgbuild-19921178a861f4bb631f6ec05d19fcaebc5836a6.tar.bz2 |
folding at home: moved to extra from community
Diffstat (limited to 'abs/extra/foldingathome/foldingathome.install')
-rw-r--r-- | abs/extra/foldingathome/foldingathome.install | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/abs/extra/foldingathome/foldingathome.install b/abs/extra/foldingathome/foldingathome.install new file mode 100644 index 0000000..20e48d1 --- /dev/null +++ b/abs/extra/foldingathome/foldingathome.install @@ -0,0 +1,47 @@ +post_install() { + # Check for an R5.5 fah installation. + r5_fah_dir=/myth/folding@home + r6_fah_dir=/myth/foldingathome/$(hostname) + if [ -d "$r5_fah_dir" ] ; then + if [ -d "$r6_fah_dir" ] ; then + cat << 'EOM' + --> You have an R5.5 and an R6 folding directory at the same time! + --> you should manually delete the R5.5 directory: + --> $r5_fah_dir + --> The directroy used on R6 will be: + --> $r6_fah_dir +EOM + else + mkdir -p /myth/foldingathome + mv $r5_fah_dir $r6_fah_dir + fi + else + if [ ! -d "$r6_fah_dir" ] ; then + mkdir -p $r6_fah_dir + cat > $r6_fah_dir/client.cfg << 'EOM' +[settings] +username=LinHES +team=50975 +passkey= +asknet=no +bigpackets=normal +machineid=1 + +[http] +active=no +host=localhost +port=8080 +EOM + fi + fi + rm -fr $r6_fah_dir/index.html + ln -s $r6_fah_dir/MyFolding.html $r6_fah_dir/index.html + ln -s $r6_fah_dir /data/srv/httpd/htdocs/foldingathome + /sbin/add_service.sh fah +} + +pre_remove() { + sv stop fah + /sbin/remove_service.sh fah +} + |