diff options
author | Tanu Kaskinen <tanu.kaskinen@linux.intel.com> | 2014-07-12 18:59:19 +0300 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-13 21:14:07 -0400 |
commit | 667a1cd645c9402921dedff08a86bb35cddbcbf9 (patch) | |
tree | e612765463c026937255c6339e6cb745ca10e4bd /src | |
parent | 91acdc17a5b47e775369c6b907601f44fab07dcb (diff) |
path-lookup: don't make ~/.local/share/systemd/user a symlink
We already encourage upstreams to keep the default configuration
separate from user customizations for software that is installed in
the system location. Let's allow that separation also for software
that is installed in the home directory.
Some discussion:
http://thread.gmane.org/gmane.comp.sysutils.systemd.devel/19627
Diffstat (limited to 'src')
-rw-r--r-- | src/shared/path-lookup.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/shared/path-lookup.c b/src/shared/path-lookup.c index e0aaf4431f..7d53d859b6 100644 --- a/src/shared/path-lookup.c +++ b/src/shared/path-lookup.c @@ -125,26 +125,8 @@ static char** user_dirs( goto fail; } else if (home) { - _cleanup_free_ char *data_home_parent = NULL; - if (asprintf(&data_home, "%s/.local/share/systemd/user", home) < 0) goto fail; - - /* There is really no need for two unit dirs in $HOME, - * except to be fully compliant with the XDG spec. We - * now try to link the two dirs, so that we can - * minimize disk seeks a little. Further down we'll - * then filter out this link, if it is actually is - * one. */ - - if (path_get_parent(data_home, &data_home_parent) >= 0) { - _cleanup_free_ char *config_home_relative = NULL; - - if (path_make_relative(data_home_parent, config_home, &config_home_relative) >= 0) { - mkdir_parents_label(data_home, 0777); - (void) symlink(config_home_relative, data_home); - } - } } e = getenv("XDG_DATA_DIRS"); |