blob: a27974a2b4eddc6b01892f07240046444c2b2257 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
-- SPDX-License-Identifier: GPL-3.0-or-later
local id = os.getenv('SYSTEMD_INSTANCE')
if not id then
warn('environment variable $SYSTEMD_INSTANCE not set')
else
-- Bind to control socket in run_dir
worker.control_path = '@run_dir@/control/'
local path = worker.control_path..id
local ok, err = pcall(net.listen, path, nil, { kind = 'control' })
if not ok then
warn('bind to '..path..' failed '..err)
end
end
-- Set cache location
rawset(cache, 'current_storage', 'lmdb://@systemd_cache_dir@')
|