/usr/share/jed/lib/defaults.sl is in jed-common 1:0.99.19-4.
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 | % defaults.sl
%
% Evaluate all *.sl files in /etc/jed.d/
%
% At startup, site.sl looks for the existence of "defaults.sl" and loads
% it. This file IS NOT distributed with JED (upstream) but added by the
% Debian jed-common package.
%
% Copyright © 2005 The Debian Jed Maintainers Group
% Released under the terms of the GNU General Public License (ver. 2 or later)
% dummy function, enables skipping the startup procecure from the command line
% with `jed --skip-debian-startup`
define skip_debian_startup() {}
% Evaluate all *.sl files in the jed configuration directory "/etc/jed.d/"
% in alphabetical order
define debian_startup()
{
variable file, dir = listdir("/etc/jed.d/");
foreach file ( dir[array_sort(dir)] )
{
if (path_extname(file) == ".sl")
() = evalfile(strcat("/etc/jed.d/", file));
}
}
if ( andelse {BATCH != 2}
% skip startup scripts if jed is started as `jed-script`
{wherefirst(__argv == "--skip-debian-startup") == NULL}
% skip startup scripts if jed is started with --skip-debian-startup
)
debian_startup();
|