wok-4.x annotate slitaz-boot-scripts/receipt @ rev 1931
slitaz-loram: use gzip compression
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Dec 24 17:34:33 2008 +0000 (2008-12-24) |
parents | e2c988692169 |
children | 60ee436ad7c2 |
rev | line source |
---|---|
pankso@16 | 1 # SliTaz package receipt. |
pankso@16 | 2 |
pankso@16 | 3 PACKAGE="slitaz-boot-scripts" |
pascal@1785 | 4 VERSION="2.6" |
pankso@178 | 5 CATEGORY="base-system" |
pankso@16 | 6 SHORT_DESC="Provide all the initialisation scripts used at boot time." |
pankso@16 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@16 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@16 | 9 WEB_SITE="http://www.slitaz.org/" |
pankso@1083 | 10 WGET_URL="http://mirror.slitaz.org/sources/boot-scripts/$TARBALL" |
pascal@1269 | 11 CONFIG_FILES="/etc/inittab /etc/init.d/local.sh /etc/rcS.conf /etc/network.conf" |
pankso@16 | 12 |
pankso@16 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@16 | 14 # |
pankso@16 | 15 # This package is all build by genpkg, it provide the boot scripts found |
pankso@16 | 16 # in /etc/init.d with the main config file : /etc/rcS.conf. It provide also |
pankso@16 | 17 # the default inittab and the network config file used with network.sh |
pankso@16 | 18 # |
pankso@16 | 19 genpkg_rules() |
pankso@16 | 20 { |
pascal@1737 | 21 mkdir -p $fs/usr/share $fs/etc/X11 |
pankso@16 | 22 cp -a $src/etc $fs |
pankso@396 | 23 cp -a $src/applications $fs/usr/share |
pankso@806 | 24 |
pankso@16 | 25 # Perms |
pankso@16 | 26 chown -R root.root $fs/etc/init.d |
pankso@16 | 27 chmod 755 $fs/etc/init.d/*.sh |
pankso@16 | 28 chmod 755 $fs/etc/init.d/rc* |
pankso@16 | 29 } |
pankso@16 | 30 |
pankso@265 | 31 # Pre install commands. |
pankso@16 | 32 # |
pankso@16 | 33 pre_install() |
pankso@16 | 34 { |
pankso@16 | 35 local root |
pankso@16 | 36 root=$1 |
pankso@806 | 37 |
pankso@16 | 38 # Backup file to restore with post install |
pankso@52 | 39 echo "Creating backups of configs..." |
pankso@52 | 40 cp $root/etc/rcS.conf $root/etc/rcS.conf.bak 2>/dev/null |
pankso@52 | 41 cp $root/etc/network.conf $root/etc/network.conf.bak 2>/dev/null |
pankso@52 | 42 cp $root/etc/inittab $root/etc/inittab.bak 2>/dev/null |
pankso@52 | 43 cp $root/etc/init.d/local.sh $root/etc/init.d/local.sh.bak 2>/dev/null |
pankso@16 | 44 } |
pankso@16 | 45 |
pankso@16 | 46 post_install() |
pankso@16 | 47 { |
pankso@16 | 48 local root |
pankso@16 | 49 root=$1 |
pankso@52 | 50 echo "Restoring configs backups..." |
pankso@52 | 51 mv -f $root/etc/rcS.conf.bak $root/etc/rcS.conf 2>/dev/null |
pankso@52 | 52 mv -f $root/etc/network.conf.bak $root/etc/network.conf 2>/dev/null |
pankso@52 | 53 mv -f $root/etc/inittab.bak $root/etc/inittab 2>/dev/null |
pankso@52 | 54 mv -f $root/etc/init.d/local.sh.bak $root/etc/init.d/local.sh 2>/dev/null |
pankso@806 | 55 |
pankso@609 | 56 # wifi config |
pankso@609 | 57 if ! grep -q ^WIFI $root/etc/network.conf; then |
pankso@609 | 58 cat >> $root/etc/network.conf << "EOT" |
pankso@609 | 59 # Wifi connection. |
pankso@609 | 60 # Enable/disable wireless connection at boot time. |
pankso@609 | 61 WIFI="no" |
pankso@609 | 62 |
pankso@609 | 63 # Wifi interface (iwconfig) and ESSID. |
pankso@609 | 64 WIFI_INTERFACE="wlan0" |
pankso@806 | 65 WIFI_ESSID="any" |
pankso@806 | 66 WIFI_MODE="managed" |
pankso@806 | 67 WIFI_KEY="" |
pascal@1137 | 68 WIFI_KEY_TYPE="none" |
pascal@1137 | 69 WPA_DRIVER="" |
pankso@806 | 70 WIFI_CHANNEL="" |
pascal@1137 | 71 WIFI_IWCONFIG_ARGS="" |
pascal@1137 | 72 NDISWRAPPER_DRIVERS="" |
pankso@609 | 73 |
pankso@609 | 74 EOT |
pankso@609 | 75 fi |
pankso@895 | 76 # From 2.3 default user have uid=1000 (standard), so change hacker |
pankso@895 | 77 # id/group and chown. |
pankso@895 | 78 if grep -q "500:500" $root/etc/passwd; then |
pankso@895 | 79 sed -i s/'500:500'/'1000:1000'/ $root/etc/passwd |
pankso@895 | 80 sed -i s/'500'/'1000'/ $root/etc/group |
pankso@895 | 81 chown -R 1000.1000 $root/home/hacker |
pankso@895 | 82 fi |
pankso@16 | 83 } |