diff options
author | Björn Esser <[email protected]> | 2017-05-07 12:48:32 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-05-25 19:33:52 +0200 |
commit | 8f84934b86f04eebb9d7aebf32321925e1764958 (patch) | |
tree | 839bc2d9e76812810446d6eed5edafe8b7c89ea1 /mate-session/main.c | |
parent | 0495fb8fa8f584a4f294254e39cbdc5615defc87 (diff) | |
download | mate-session-manager-8f84934b86f04eebb9d7aebf32321925e1764958.tar.bz2 mate-session-manager-8f84934b86f04eebb9d7aebf32321925e1764958.tar.xz |
systemd user-session needs to be updated to get all user-defined
enviroment when the session starts.
If we get passed an environment variable, send it along to the
systemd --user session so things running in that context can pick
it up.
See: https://bugzilla.gnome.org/show_bug.cgi?id=736660
Diffstat (limited to 'mate-session/main.c')
-rw-r--r-- | mate-session/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mate-session/main.c b/mate-session/main.c index da931af..161772d 100644 --- a/mate-session/main.c +++ b/mate-session/main.c @@ -622,6 +622,10 @@ int main(int argc, char** argv) gsm_util_export_activation_environment (NULL); +#ifdef HAVE_SYSTEMD + gsm_util_export_user_environment (NULL); +#endif + mdm_log_init(); /* Allows to enable/disable debug from GSettings only if it is not set from argument */ |