This file is indexed.

/usr/share/pysdm/fsdata/ext3.py is in pysdm 0.4.1-0ubuntu3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from constants import *

options = []
options.append( \
	{"acl":			[0, ["acl", ""], _("Support POSIX access list"), G_O], \
	 "bsddf":		[0, ["minixdf", ""], _("Minix behaviour for stat information"), G_O], \
	 "check":		[0, ["check", ""], _("Check file system at mount time"), G_M], \
	 "debug":		[0, ["debug", ""], _("Print debugging info"), G_O], \
	 "errors":		[2, ["continue", "remount-ro", "panic"], _("Specify what to do in case of error"), G_P], \
	 "grpid":		[0, ["grpid", ""], _("Get group id from the directory for a new file"), G_P], \
	 "nobh":		[0, ["nobh", ""], _("Do not attach buffer_heads to file pagecache"), G_P], \
	 "nouid32":		[0, ["nouid32", ""], _("Disables 32 bit user and group id"), G_O], \
	 "oldalloc":	[0, ["oldalloc", ""], _("Use old new inode allocator"), G_P], \
	 "resgid":		[1, [""], _("Group allowed to use reserved space"), G_O], \
	 "resuid":		[1, [""], _("User allowed to use reserved space"), G_O], \
	 "sb":			[1, [""], _("Use a especific block as superblock"), G_P], \
	 "user_xattr":	[0, ["user_xattr", ""], _("Support extended attributes"), G_M], \
	 "journal":		[1, ["update"], _("Update journal or specify the inode where it is"), G_J], \
	 "noload":		[0, ["noload", ""], _("Do not load journal on mounting"), G_J], \
	 "data":		[2, ["ordered", "journal", "writeback"], _("Specify a journaling mode"), G_J], \
	 "commit":		[1, ["0"], _("Synchronize data and metadata every specified seconds, 0 for default (5s.)"), G_P] \
	} \
	)
	
	 
options.append( \
	{"noacl":	"acl", \
	 "minixdf":	"bsddf", \
	 "nocheck": "check", \
	 "nogrpid": "grpid", \
	 "orlov":	"oldalloc", \
	 "nouser_xattr": "user_xattr" \
	}
	)

defaults = ["errors=remount-ro"]