Преглед изворни кода

update vbuilder.sh.in: updated some functions for mounting file systems

git-svn-id: http://trac.vinelinux.org/repos/projects/vbootstrap/trunk@455 ec354946-7b23-47d6-9f5a-488ba84defc7
munepi пре 15 година
родитељ
комит
183c9c230a
2 измењених фајлова са 12 додато и 3 уклоњено
  1. 8 3
      vbootstrap.spec
  2. 4 0
      vbuilder.sh.in

+ 8 - 3
vbootstrap.spec

@@ -1,7 +1,7 @@
 # This package is maintained on trac svn repository. Please do not change on local.
 # If you find a BUG, please report to Vine@vinelinux.org or mailing list or BTS.
 
-%define version 0.0.13
+%define version 0.0.14
 
 Summary: bootstrap scripts to create a basic Vine Linux system
 Summary(ja): Vine Linux の基本システムを作成するためのスクリプト
@@ -59,6 +59,11 @@ make DESTDIR=$RPM_BUILD_ROOT install
 
 
 %changelog
+* Sun Feb 07 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.14-1
+- updated vbuilder.sh.in
+  - used __chroot_sh
+  - improved some functions for mounting file systems
+
 * Sat Feb 06 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.13-1
 - updated vbuilder.sh.in
   - fixed /home/vbuilder/.rpmmacros for VineSeed_i386, VineSeed
@@ -75,8 +80,8 @@ make DESTDIR=$RPM_BUILD_ROOT install
   - added Japanese translations for error messages
   - improved some mounting processes
     - defined some mount functions
-    - defined apt-get-update function
-  - defined check-parameter function
+    - defined apt-get-update() function
+  - defined check-parameter() function
 
 * Tue Dec 29 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.10-1
 - updated vbuilder.sh.in

+ 4 - 0
vbuilder.sh.in

@@ -385,6 +385,10 @@ mount-chroot-mount(){
 	    [ -d ${ARCHIVES_DIR}/partial ] || mkdir -p ${ARCHIVES_DIR}/partial
 	    return 0
 	    ;;
+	*)
+	    echo mount-chroot-mount: unknown file system $fs
+	    exit 1
+	    ;;
     esac
    
 }