This file is indexed.

/etc/codeaster/profile.csh is in code-aster-run 1.13.1-2.

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
34
35
36
37
38
# AUTOMATICALLY GENERATED - DO NOT EDIT !
# Put all your changes in profile_local.csh in the same directory
#
# profile.csh : initialize the environment for as_run services
# (sh, ksh, bash syntax)
#
# If variables are depending on Code_Aster version, use ENV_SH in
# the corresponding 'config.txt' file.
#

if (!($?DEFINE_PROFILE_ASRUN) || !($?LD_LIBRARY_PATH)) then
   setenv DEFINE_PROFILE_ASRUN done
#--- ifndef DEFINE_PROFILE_ASRUN -----------------------------------------------

if !($?ASTER_ROOT) then
    # from first installation
    setenv ASTER_ROOT /usr/lib/codeaster
    setenv PATH $ASTER_ROOT/bin:$ASTER_ROOT/outils:$PATH
endif

if (!$?ASTER_ETC) then
   setenv ASTER_ETC /etc
endif


setenv PYTHONEXECUTABLE /usr/bin/python


setenv WISHEXECUTABLE /usr/bin/wish


# source local profile
if (-e $ASTER_ETC/codeaster/profile_local.csh) then
   source $ASTER_ETC/codeaster/profile_local.csh
endif

#--- endif DEFINE_PROFILE_ASRUN ------------------------------------------------
endif