Whamcloud - gitweb
LU-3326 tests: limit the disk space used by run_*.sh
[fs/lustre-release.git] / build / gen_filelist.sh
1 #!/bin/sh
2
3 # Run this script after a package install and pre uninstall
4 usage()
5 {
6         echo "Usage: $0 <root_dir> <create|remove>"
7         exit 1
8 }
9
10 if [ $# -ne 2 ]; then usage; fi
11 if [ !  -d $1 ]; then usage; fi
12
13 NAME=$(basename "$0" .sh)
14 ROOT_DIR="$1"
15 FILELIST="$(dirname $ROOT_DIR)/$NAME.filelist"
16 case "$2" in
17 create)
18         EXCLUDE="\(share\|include\|src\)"
19
20         # Create filelist for Intel(R) Xeon Phi(TM) infrastructure
21         for i in $(rpm -ql $NAME | grep $ROOT_DIR | grep -v $EXCLUDE); do
22                 find $ROOT_DIR -path $i -type f -printf "file /%P $(basename $ROOT_DIR)/%P %#m 0 0\n"
23                 dir=$(dirname $i)
24                 while [ "$dir" != "$ROOT_DIR" ]; do
25                         echo "dir $dir 0755 0 0" | sed -e "s#$ROOT_DIR##"
26                         dir=$(dirname $dir)
27                 done
28                 # Link scripts for autorun after boot (NOT READY YET)
29                 #if [ -n "$(echo $i | grep '/init.d/')" ]; then
30                 #       echo "slink /etc/rc3.d/S31$(basename $i) ../init.d/$(basename $i) 0755 0 0"
31                 #fi
32         done | sort -u > $FILELIST
33
34         mkdir -p /etc/sysconfig/mic/conf.d
35         echo "Overlay $(dirname $ROOT_DIR) $FILELIST" > /etc/sysconfig/mic/conf.d/$NAME.conf
36         ;;
37 remove)
38         rm -f $FILELIST
39         rm -f /etc/sysconfig/mic/conf.d/$NAME.conf
40         ;;
41 *)
42         usage
43         ;;
44 esac
45 exit 0