source: MondoRescue/devel/mr/post-install.sh@ 2646

Last change on this file since 2646 was 2540, checked in by Bruno Cornec, 14 years ago

r3576@localhost: bruno | 2010-01-08 01:15:36 +0100
First set of correct split packages. Now need to work on content. mranalyze-lvm is now executable.

  • Property svn:keywords set to Id
File size: 1.6 KB
RevLine 
[179]1#!/bin/bash
[916]2#
3# $Id: post-install.sh 2540 2010-01-09 15:40:53Z bruno $
4#
[1]5
[184]6if [ "_$PREFIX" != "_" ]; then
[936]7 local=${HEAD}$PREFIX
8 sublocal=$PREFIX
9 if [ "_$CONFDIR" != "_" ]; then
[2539]10 conf=${HEAD}$CONFDIR/PBPROJ
11 subconf=$CONFDIR/PBPROJ
[936]12 else
13 echo "CONFDIR should be defined if PREFIX is defined"
14 exit -1
15 fi
[179]16else
17 local=/usr/local
[936]18 sublocal=$local
[2539]19 conf=$local/etc/PBPROJ
[936]20 subconf=$conf
[179]21fi
22
[2149]23if [ _"$CACHEDIR" = _"" ]; then
[2539]24 CACHEDIR=$local/var/cache/PBPROJ
[2149]25else
26 CACHEDIR=${HEAD}$CACHEDIR
27fi
[2539]28sublocalshare="$local/share/PBPROJ"
29sublocallib="$local/lib/PBPROJ"
[2149]30
[2539]31MRVER=PBVER
32MRREV=PBREV
[1565]33ARCH=`/bin/uname -m`
[2539]34echo "PBPROJ modules ${MRVER}-r${MRREV} will be installed under $local"
[179]35
36echo "Creating target directories ..."
[2538]37install -m 755 -d $conf $sublocallib $sublocalshare $CACHEDIR
[1]38
[2539]39echo "Copying files ..."
[2538]40#cp -af rootfs $sublocallib/mindi
41#chmod 755 $sublocallib/mindi/rootfs/sbin/*
42#install -m 644 msg-txt dev.tgz $sublocallib/mindi
43#install -m 644 deplist.txt udev.files proliant.files $conf
[1]44
[2539]45cp etc/PBPROJ.conf $conf
[2540]46cat > $HEAD$PERLDIR/MondoRescue/DynConf.pm << EOF
[2539]47#!/usr/bin/perl -w
48#
49# Declare variables for the MondoRescue project
50# This module has been generated at installation time
51# Do not modify without good reasons.
52#
53package MondoRescue::DynConf;
[179]54
[2539]55use strict;
[237]56
[2539]57# Inherit from the "Exporter" module which handles exporting functions.
58
59use Exporter;
60
61# Export, by default, all the functions into the namespace of
62# any code which uses this module.
63our @ISA = qw(Exporter);
64our @EXPORT = qw(mr_dynconf_init);
65
66# Returns in order
67# the CONFDIR
68# the LOCALDIR
69sub mr_dynconf_init {
70
[2540]71return("$subconf","$sublocal","PBPROJ");
[2539]72}
731;
74EOF
75
[1]76exit 0
Note: See TracBrowser for help on using the repository browser.