Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
3d5d66ec
Commit
3d5d66ec
authored
8 years ago
by
bigbes
Browse files
Options
Downloads
Patches
Plain Diff
Isolate default_file loading
parent
672a8f97
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
extra/dist/tarantoolctl.in
+15
-8
15 additions, 8 deletions
extra/dist/tarantoolctl.in
with
15 additions
and
8 deletions
extra/dist/tarantoolctl.in
+
15
−
8
View file @
3d5d66ec
...
...
@@ -150,8 +150,8 @@ local group_name
--
-- overrides for defaults files
--
--
local instance_dir
--
local default_cfg
local
instance_dir
local
default_cfg
--
-- print usage and exit
...
...
@@ -240,17 +240,24 @@ end
--
-- System-wide default file may be missing, this is OK, we'll assume built-in
-- defaults
-- It uses sandboxing for isolation. It's not completely safe, but it won't
-- allow a pollution of global variables
--
local
function
load_default_file
(
default_file
)
if
default_file
then
local
success
,
data
=
pcall
(
dofile
,
default_file
)
local
env
=
setmetatable
({},
{
__index
=
_G
})
local
ufunc
,
msg
=
loadfile
(
default_file
)
-- if load fails - show last 10 lines of the log file
if
not
success
then
log
.
error
(
"Failed to load defaults file: %s"
,
data
)
if
fio
.
stat
(
default_cfg
.
logger
)
then
os.execute
(
'tail -n 10 '
..
default_cfg
.
logger
)
end
if
not
ufunc
then
log
.
error
(
"Failed to load defaults file: %s"
,
msg
)
end
debug
.
setfenv
(
ufunc
,
env
)
local
state
,
msg
=
pcall
(
ufunc
)
if
not
state
then
log
.
error
(
'Failed to execute defaults file: %s'
,
msg
)
end
default_cfg
=
env
.
default_cfg
instance_dir
=
env
.
instance_dir
end
local
d
=
default_cfg
or
{}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment