wok-next view slitaz-base-files/receipt @ rev 16572

slitaz-base-files: dont symlink /var/run, it --bind on /rn tmpfs
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 02 19:10:08 2014 +0200 (2014-05-02)
parents a15022f4edfb
children fd764265ec1e
line source
1 # SliTaz package receipt.
3 PACKAGE="slitaz-base-files"
4 VERSION="5.6.2"
5 CATEGORY="base-system"
6 SHORT_DESC="Linux tree and the necessary files for the base system."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.slitaz.org/"
11 WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$VERSION.tar.gz"
12 HOST_ARCH="i486 arm"
14 DEPENDS="gettext-base"
16 CONFIG_FILES="
17 /etc/adduser.conf
18 /etc/passwd
19 /etc/fstab
20 /etc/issue
21 /etc/hosts
22 /etc/host.conf
23 /etc/hostname
24 /etc/group
25 /etc/gshadow
26 /etc/shadow
27 /etc/daemons.conf
28 /etc/nsswitch.conf
29 /etc/networks
30 /etc/profile
31 /etc/securetty
32 /etc/services
33 /etc/shells"
35 # Rules to configure and make the package.
36 compile_rules()
37 {
38 cd $src
39 make DESTDIR=$DESTDIR install
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 mkdir -p \
46 $fs/bin \
47 $fs/dev \
48 $fs/home \
49 $fs/media/cdrom \
50 $fs/media/flash \
51 $fs/media/usbdisk \
52 $fs/mnt \
53 $fs/proc \
54 $fs/root \
55 $fs/run \
56 $fs/sbin \
57 $fs/sys \
58 $fs/tmp \
59 $fs/usr/bin \
60 $fs/usr/games \
61 $fs/usr/lib \
62 $fs/usr/local \
63 $fs/usr/sbin \
64 $fs/usr/share/doc \
65 $fs/var/cache \
66 $fs/var/games \
67 $fs/var/lib \
68 $fs/var/lock \
69 $fs/var/log/slitaz \
70 $fs/var/spool \
71 $fs/var/tmp \
72 $fs/var/run
74 # Daemons may store the pid files in /var/run
75 # from 5.0 /var/run is mounted as tmpfs
76 #ln -s /run $fs/var/run
78 # Copy all installed files and set permissions.
79 cp -a $install/* $fs
81 chown -R root.root $fs/*
82 chmod 1777 $fs/tmp
83 chmod 640 $fs/etc/shadow
84 chmod 640 $fs/etc/gshadow
85 chmod 0750 $fs/root
87 # Populate /dev with $fs/sbin/mktazdevs.sh.
88 $fs/sbin/mktazdevs.sh $fs/dev
90 # Creat /etc/mtab symlink.
91 cd $fs/etc
92 ln -s /proc/mounts mtab
94 # Fix httphelper link
95 cd $fs/usr/lib/slitaz
96 ln -s httphelper.sh httphelper
97 }
99 # Pre and post install to backup all /etc/settings
100 #
101 pre_install()
102 {
103 local root
104 root=$1
105 echo "Creating backup of all files in /etc..."
106 cp -a $root/etc $root/tmp/etc.bak 2>/dev/null
107 }
109 post_install()
110 {
111 local root
112 root=$1
113 echo "Restoring files from /etc/etc.bak..."
114 cp -a $root/tmp/etc.bak/* $root/etc 2>/dev/null
115 rm -rf $root/tmp/etc.bak
117 # Reset permission.
118 chmod 640 $root/etc/shadow
119 chmod 640 $root/etc/gshadow
121 if ! grep -q audio $root/etc/group; then
122 chroot $root/ /bin/addgroup -g 20 audio
123 fi
124 }
126 pre_remove()
127 {
128 # We can not remove this package !
129 exit 1
130 }