freebsd-ports/lang/ferite/files/patch-scripts::test::test.fe
Tilman Keskinoz c4897416bc Update to 0.99.6
PR:		47084
Submitted by:	KATO Tsuguru <tkato@prontomail.com>
2003-01-18 22:20:18 +00:00

26 lines
1.2 KiB
Text

--- scripts/test/test.fe.orig Sat Nov 23 05:29:42 2002
+++ scripts/test/test.fe Sat Jan 11 18:27:52 2003
@@ -17,17 +17,17 @@
a_global_int = 10;
- Console.println( "Printing Out All ext3 Partitions in /etc/fstab" );
+ Console.println( "Printing Out All ufs Partitions in /etc/fstab" );
testfile = Sys.openfile( "/etc/fstab", 0 );
Console.println( "Here." );
while( (blam = testfile.readln()) )
{
if( blam =~ m/
- (\/dev\/[hs]d[a-g][1-9]) # device entry
- [\ \t]* # whitespace
- (\/[a-z]*(\/[a-z]*)*) # mount point
- [\ \t]* # whitespace
- ext3 # force adherance to ext3
+ (\/dev\/[adw][ad][0-9][0-9]?s?[1-4]?[a-h]) # device entry
+ [\ \t]* # whitespace
+ (\/[a-z]*(\/[a-z]*)*) # mount point
+ [\ \t]* # whitespace
+ ufs # force adherance to ufs
/xoi /* make usre it's not case sensitive */
)
{