summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/profile/OpenSLX
diff options
context:
space:
mode:
Diffstat (limited to 'os-plugins/plugins/profile/OpenSLX')
-rw-r--r--os-plugins/plugins/profile/OpenSLX/Distro/Base.pm14
1 files changed, 8 insertions, 6 deletions
diff --git a/os-plugins/plugins/profile/OpenSLX/Distro/Base.pm b/os-plugins/plugins/profile/OpenSLX/Distro/Base.pm
index 3b5508dc..5588a177 100644
--- a/os-plugins/plugins/profile/OpenSLX/Distro/Base.pm
+++ b/os-plugins/plugins/profile/OpenSLX/Distro/Base.pm
@@ -18,7 +18,7 @@ use warnings;
our $VERSION = 1.01; # API-version . implementation-version
-use File::Basename;
+use Scalar::Util qw( weaken );
use OpenSLX::Basics;
use OpenSLX::Utils;
@@ -37,13 +37,15 @@ sub initialize
{
my $self = shift;
$self->{engine} = shift;
+ weaken($self->{engine});
+ # avoid circular reference between plugin and its engine
return 1;
}
sub getXsessionDPath
{
- my $self = shift;
+ my $self = shift;
return "/etc/X11/Xsession.d/10slx-home_env";
}
@@ -51,21 +53,21 @@ sub getXsessionDPath
sub getProfileDPAth
{
- my $self = shift;
+ my $self = shift;
return "/etc/profile.d/slx-kdehome.sh";
}
sub getKdeHome
{
- my $self = shift;
+ my $self = shift;
return ".openslx/unknown/kde";
}
sub getGconfPathConfig
{
- my $self = shift;
+ my $self = shift;
return "/etc/gconf/2/path";
}
@@ -73,7 +75,7 @@ sub getGconfPathConfig
sub getGconfHome
{
- my $self = shift;
+ my $self = shift;
return ".openslx/unknown/gconf";
}