diff options
author | Lauri Aarnio <Lauri.Aarnio@iki.fi> | 2009-03-13 16:59:45 +0200 |
---|---|---|
committer | Lauri Leukkunen <lle@rahina.org> | 2009-03-23 01:37:47 +0200 |
commit | b88704b1331c6a7857cc4607d870ef0e58b5170d (patch) | |
tree | 5b3ad638b64ea058c0024772e325234bdec3095b /lua_scripts/pathmaps/devel/00_default.lua | |
parent | 9c11d8d85b8ed161bdc6c01f406a4b322354b2a8 (diff) |
Bugfix: Failed, if /tmp was symlink to /var/tmp (all mapping modes)
- reorganized some rules in the mapping modes and added a check to
utils/sb2, so that $SBOX_SESSION_DIR does not contain symlinks
Diffstat (limited to 'lua_scripts/pathmaps/devel/00_default.lua')
-rw-r--r-- | lua_scripts/pathmaps/devel/00_default.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lua_scripts/pathmaps/devel/00_default.lua b/lua_scripts/pathmaps/devel/00_default.lua index d99795d..a3201e4 100644 --- a/lua_scripts/pathmaps/devel/00_default.lua +++ b/lua_scripts/pathmaps/devel/00_default.lua @@ -617,6 +617,9 @@ simple_chain = { next_chain = nil, binary = nil, rules = { + -- ----------------------------------------------- + -- 1. The session directory + {dir = session_dir, use_orig_path = true}, -- ----------------------------------------------- -- 2. Development environment special destinations: @@ -686,7 +689,6 @@ simple_chain = { -- ----------------------------------------------- -- 85. /tmp - {prefix = session_dir, use_orig_path = true}, {prefix = "/tmp", map_to = session_dir}, -- ----------------------------------------------- |