Check-in [9be4aa6a4a]
Overview
Comment:Updated to indicate local files are not world-accessible (good idea ?)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9be4aa6a4a7325edbc11ddf2a9474224842742bd
User & Date: rkeene on 2015-03-19 15:43:08
Other Links: manifest | tags
Context
2015-03-19
16:09
Allow administrators to provide additional/replaced permissions for files, fixed suidRoot setting check-in: e9fcc6d8f5 user: rkeene tags: trunk
15:43
Updated to indicate local files are not world-accessible (good idea ?) check-in: 9be4aa6a4a user: rkeene tags: trunk
2015-03-18
17:21
Updated to use an environment variable to determine if we should do a debug build (usually not) check-in: 40785110e7 user: rkeene tags: trunk
Changes

Modified appfsd.tcl from [b01c545d08] to [c5b01df3b2].

753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
								set retval(childcount) [llength [getchildren $path]]
							}
							"file" {
								set retval(type) "file"
								set retval(size) $localpathinfo(size)
								_as_user {
									if {[file executable $localpath]} {
										set retval(perms) "x"
									} else {
										set retval(perms) ""
									}
								}
							}
							"link" {
								set retval(type) "symlink"

								_as_user {







|

|







753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
								set retval(childcount) [llength [getchildren $path]]
							}
							"file" {
								set retval(type) "file"
								set retval(size) $localpathinfo(size)
								_as_user {
									if {[file executable $localpath]} {
										set retval(perms) "x-"
									} else {
										set retval(perms) "-"
									}
								}
							}
							"link" {
								set retval(type) "symlink"

								_as_user {