Changeset 149


Ignore:
Timestamp:
Jun 26, 2010, 12:01:06 AM (14 years ago)
Author:
jazz
Message:
  • testing on new lenny vm and add some check
File:
1 edited

Legend:

Unmodified
Added
Removed
  • drbl-hadoop-live/test-live-helper.sh

    r148 r149  
    1010## [3] man lh_config and lh_build
    1111
    12 ###        -b|--binary-images iso|net|tar|usb-hdd
    13 ###        --binary-filesystem fat16|fat32|ext2
    14 ###        --binary-indices enabled|disabled
    15 ###        --bootstrap-config FILE
    16 ###        -f|--bootstrap-flavour minimal|standard
    17 ###        --cache enabled|disabled
    18 ###        --cache-indices enabled|disabled
    19 ###        --categories CATEGORY|"CATEGORIES"
    20 ###        -d|--distribution CODENAME
    21 ###        --hostname NAME
    22 ###        -m|--mirror-bootstrap URL
    23 ###        --mirror-chroot URL
     12## Check current distribution is debian-like or not
     13if [ ! -f /etc/debian_version ]; then
     14  echo "[ERROR] This script must run on Debian or Ubuntu !!"
     15  exit
     16fi
     17
     18## If /usr/bin/lh is not found, install live-helper package first!!
     19if [ ! -x /usr/bin/lh ]; then
     20  echo "[WARN] live-helper not found!! I will install it first for you!!"
     21  apt-get install -y live-helper
     22fi
     23
     24## [MEMO] following parameter is for live-helper ...........
     25###        -b|--binary-images iso|net|tar|usb-hdd
     26###        --binary-filesystem  fat16|fat32|ext2
     27###        --binary-indices   enabled|disabled
     28###        --bootstrap-config FILE
     29###        -f|--bootstrap-flavour minimal|standard
     30###        --cache      enabled|disabled
     31###        --cache-indices    enabled|disabled
     32###        --categories   CATEGORY|"CATEGORIES"
     33###        -d|--distribution  CODENAME
     34###        --hostname   NAME
     35###        -m|--mirror-bootstrap  URL
     36###        --mirror-chroot    URL
    2437###        --mirror-chroot-security URL
    25 ###        --username NAME
    26 sudo lh clean --binary
    27 sudo lh_config -b iso --binary-indices disabled -f minimal --cache enabled --cache-indices enabled --categories 'main non-free' -d lenny --hostname hadoop -m http://free.nchc.org.tw/debian --mirror-chroot http://free.nchc.org.tw/debian --mirror-chroot-security http://free.nchc.org.tw/debian-security --mirror-binary http://free.nchc.org.tw/debian --mirror-binary-security http://free.nchc.org.tw/debian-security --username hadoop --packages 'ssh sudo xserver-xorg-video-vesa xinit xfonts-base x11-xserver-utils xterm openbox iceweasel dhcp3-client' -k 686
    28 sudo lh build
     38###        --username   NAME
     39
     40lh clean --binary
     41# [Note] option '--categories' is only avaible at live-helper 1.0.3-2
     42lh config -b iso --binary-indices disabled -f minimal --cache enabled --cache-indices enabled --categories 'main non-free' -d lenny --hostname hadoop -m http://free.nchc.org.tw/debian --mirror-chroot http://free.nchc.org.tw/debian --mirror-chroot-security http://free.nchc.org.tw/debian-security --mirror-binary http://free.nchc.org.tw/debian --mirror-binary-security http://free.nchc.org.tw/debian-security --username hadoop --packages 'ssh sudo xserver-xorg-video-vesa xinit xfonts-base x11-xserver-utils xterm openbox iceweasel dhcp3-client' -k 686
     43
     44# add non-free apt repository for chroot stage
     45echo << EOF > config/chroot_sources/non-free.chroot
     46deb http://free.nchc.org.tw/debian lenny non-free
     47EOF
     48
     49lh build
     50
     51if [ -f binary.iso ]; then
     52  cp binary.iso `date +"hadoop-live-%y%m%d%H%M.iso"`
     53fi
Note: See TracChangeset for help on using the changeset viewer.