2012-12-12 Andreas Kupries <andreask@activestate.com>
+ * library/template/collatevfs.tcl: Added missing provide command.
+
+ * library/template/templatevfs.tcl: Fixed missing default status 0 in
+ * pkgIndex.tcl.in: overriden exit command. Bumped to 1.5.5
+
* pkgIndex.tcl.in: Added the various template filesystems to the
index.
}
package require vfs::template 1.5
+package provide vfs::template::collate 1.5.3
namespace eval ::vfs::template::collate {
vfs::posixError load
unset vfs::posix(load)
-package provide vfs::template 1.5.4
+package provide vfs::template 1.5.5
namespace eval ::vfs::template {
catch {rename ::exit ::vfs::template::exit}
proc ::exit {args} {
- foreach vfs [::vfs::filesystem info] {
- if [catch {$::vfs::_unmountCmd([file normalize $vfs]) $vfs} result] {
- puts "$vfs: $result"
- }
- }
- ::vfs::template::exit [lindex $args 0]
+ foreach vfs [::vfs::filesystem info] {
+ if [catch {$::vfs::_unmountCmd([file normalize $vfs]) $vfs} result] {
+ puts "$vfs: $result"
+ }
+ }
+ if {![llength $args]} { lappend args 0}
+ ::vfs::template::exit [lindex $args 0]
}
[list source [file join $dir template fishvfs.tcl]]
package ifneeded vfs::template::quota 1.5.2 \
[list source [file join $dir template quotavfs.tcl]]
-package ifneeded vfs::template 1.5.4 \
+package ifneeded vfs::template 1.5.5 \
[list source [file join $dir template templatevfs.tcl]]
#
# Helpers