From 416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5 Mon Sep 17 00:00:00 2001 From: Sebastian Schmelzer Date: Thu, 2 Sep 2010 17:50:49 +0200 Subject: change dir structure --- .../plugins/profile/OpenSLX/Distro/Base.pm | 84 ++++++++++ .../plugins/profile/OpenSLX/Distro/Debian.pm | 32 ++++ .../plugins/profile/OpenSLX/Distro/Fedora.pm | 32 ++++ .../plugins/profile/OpenSLX/Distro/Gentoo.pm | 32 ++++ .../plugins/profile/OpenSLX/Distro/Scilin.pm | 32 ++++ .../plugins/profile/OpenSLX/Distro/Suse.pm | 68 ++++++++ .../plugins/profile/OpenSLX/Distro/Ubuntu.pm | 66 ++++++++ .../plugins/profile/OpenSLX/Distro/Ubuntu_10.pm | 66 ++++++++ .../plugins/profile/OpenSLX/OSPlugin/profile.pm | 174 +++++++++++++++++++++ src/os-plugins/plugins/profile/XX_profile.sh | 31 ++++ 10 files changed, 617 insertions(+) create mode 100644 src/os-plugins/plugins/profile/OpenSLX/Distro/Base.pm create mode 100644 src/os-plugins/plugins/profile/OpenSLX/Distro/Debian.pm create mode 100644 src/os-plugins/plugins/profile/OpenSLX/Distro/Fedora.pm create mode 100644 src/os-plugins/plugins/profile/OpenSLX/Distro/Gentoo.pm create mode 100644 src/os-plugins/plugins/profile/OpenSLX/Distro/Scilin.pm create mode 100644 src/os-plugins/plugins/profile/OpenSLX/Distro/Suse.pm create mode 100644 src/os-plugins/plugins/profile/OpenSLX/Distro/Ubuntu.pm create mode 100644 src/os-plugins/plugins/profile/OpenSLX/Distro/Ubuntu_10.pm create mode 100644 src/os-plugins/plugins/profile/OpenSLX/OSPlugin/profile.pm create mode 100644 src/os-plugins/plugins/profile/XX_profile.sh (limited to 'src/os-plugins/plugins/profile') diff --git a/src/os-plugins/plugins/profile/OpenSLX/Distro/Base.pm b/src/os-plugins/plugins/profile/OpenSLX/Distro/Base.pm new file mode 100644 index 00000000..5588a177 --- /dev/null +++ b/src/os-plugins/plugins/profile/OpenSLX/Distro/Base.pm @@ -0,0 +1,84 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# profile/OpenSLX/Distro/Base.pm +# - provides base implementation of the Distro API for the profile plugin. +# ----------------------------------------------------------------------------- +package profile::OpenSLX::Distro::Base; + +use strict; +use warnings; + +our $VERSION = 1.01; # API-version . implementation-version + +use Scalar::Util qw( weaken ); + +use OpenSLX::Basics; +use OpenSLX::Utils; + +################################################################################ +### interface methods +################################################################################ +sub new +{ + my $class = shift; + my $self = {}; + return bless $self, $class; +} + +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; + + return "/etc/X11/Xsession.d/10slx-home_env"; +} + + +sub getProfileDPAth +{ + my $self = shift; + + return "/etc/profile.d/slx-kdehome.sh"; +} + +sub getKdeHome +{ + my $self = shift; + + return ".openslx/unknown/kde"; +} + +sub getGconfPathConfig +{ + my $self = shift; + + return "/etc/gconf/2/path"; +} + + +sub getGconfHome +{ + my $self = shift; + + return ".openslx/unknown/gconf"; +} + + +1; diff --git a/src/os-plugins/plugins/profile/OpenSLX/Distro/Debian.pm b/src/os-plugins/plugins/profile/OpenSLX/Distro/Debian.pm new file mode 100644 index 00000000..31ca1e8e --- /dev/null +++ b/src/os-plugins/plugins/profile/OpenSLX/Distro/Debian.pm @@ -0,0 +1,32 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# profile/OpenSLX/Distro/Debian.pm +# - provides Debian-specific overrides of the Distro API for the profile +# plugin. +# ----------------------------------------------------------------------------- +package profile::OpenSLX::Distro::Debian; + +use strict; +use warnings; + +use base qw(profile::OpenSLX::Distro::Base); + +use OpenSLX::Basics; +use OpenSLX::Utils; + +################################################################################ +### interface methods +################################################################################ + + + + +1; diff --git a/src/os-plugins/plugins/profile/OpenSLX/Distro/Fedora.pm b/src/os-plugins/plugins/profile/OpenSLX/Distro/Fedora.pm new file mode 100644 index 00000000..433f6f7f --- /dev/null +++ b/src/os-plugins/plugins/profile/OpenSLX/Distro/Fedora.pm @@ -0,0 +1,32 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# profile/OpenSLX/Distro/Fedora.pm +# - provides Fedora-specific overrides of the Distro API for the profile +# plugin. +# ----------------------------------------------------------------------------- +package profile::OpenSLX::Distro::Fedora; + +use strict; +use warnings; + +use base qw(profile::OpenSLX::Distro::Base); + +use OpenSLX::Basics; +use OpenSLX::Utils; + +################################################################################ +### interface methods +################################################################################ + + + + +1; diff --git a/src/os-plugins/plugins/profile/OpenSLX/Distro/Gentoo.pm b/src/os-plugins/plugins/profile/OpenSLX/Distro/Gentoo.pm new file mode 100644 index 00000000..240811df --- /dev/null +++ b/src/os-plugins/plugins/profile/OpenSLX/Distro/Gentoo.pm @@ -0,0 +1,32 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# profile/OpenSLX/Distro/Gentoo.pm +# - provides Gentoo-specific overrides of the Distro API for the profile +# plugin. +# ----------------------------------------------------------------------------- +package profile::OpenSLX::Distro::Gentoo; + +use strict; +use warnings; + +use base qw(profile::OpenSLX::Distro::Base); + +use OpenSLX::Basics; +use OpenSLX::Utils; + +################################################################################ +### interface methods +################################################################################ + + + + +1; diff --git a/src/os-plugins/plugins/profile/OpenSLX/Distro/Scilin.pm b/src/os-plugins/plugins/profile/OpenSLX/Distro/Scilin.pm new file mode 100644 index 00000000..de66f02a --- /dev/null +++ b/src/os-plugins/plugins/profile/OpenSLX/Distro/Scilin.pm @@ -0,0 +1,32 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# profile/OpenSLX/Distro/Scilin.pm +# - provides Scilin-specific overrides of the Distro API for the profile +# plugin. +# ----------------------------------------------------------------------------- +package profile::OpenSLX::Distro::Scilin; + +use strict; +use warnings; + +use base qw(profile::OpenSLX::Distro::Base); + +use OpenSLX::Basics; +use OpenSLX::Utils; + +################################################################################ +### interface methods +################################################################################ + + + + +1; diff --git a/src/os-plugins/plugins/profile/OpenSLX/Distro/Suse.pm b/src/os-plugins/plugins/profile/OpenSLX/Distro/Suse.pm new file mode 100644 index 00000000..e90e8211 --- /dev/null +++ b/src/os-plugins/plugins/profile/OpenSLX/Distro/Suse.pm @@ -0,0 +1,68 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# profile/OpenSLX/Distro/Suse.pm +# - provides Suse-specific overrides of the Distro API for the profile +# plugin. +# ----------------------------------------------------------------------------- +package profile::OpenSLX::Distro::Suse; + +use strict; +use warnings; + +use base qw(profile::OpenSLX::Distro::Base); + +use OpenSLX::Basics; +use OpenSLX::Utils; + +################################################################################ +### interface methods +################################################################################ + +sub _getKdeHomeMap +{ + my $self = shift; + + return; +} + +sub getProfileDPAth +{ + my $self = shift; + + + return "/etc/profile.d/slx-kdehome.sh"; +} + +sub getKdeHome +{ + my $self = shift; + + return ".openslx/suse/kde"; +} + +sub getGconfPathConfig +{ + my $self = shift; + + return "/etc/gconf/2/path"; +} + + +sub getGconfHome +{ + my $self = shift; + + return ".openslx/suse/gconf"; +} + + + +1; diff --git a/src/os-plugins/plugins/profile/OpenSLX/Distro/Ubuntu.pm b/src/os-plugins/plugins/profile/OpenSLX/Distro/Ubuntu.pm new file mode 100644 index 00000000..26cd9426 --- /dev/null +++ b/src/os-plugins/plugins/profile/OpenSLX/Distro/Ubuntu.pm @@ -0,0 +1,66 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# profile/OpenSLX/Distro/Ubuntu.pm +# - provides Debian-specific overrides of the Distro API for the profile +# plugin. +# ----------------------------------------------------------------------------- +package profile::OpenSLX::Distro::Ubuntu; + +use strict; +use warnings; + +use base qw(profile::OpenSLX::Distro::Base); + +use OpenSLX::Basics; +use OpenSLX::Utils; + +################################################################################ +### interface methods +################################################################################ + +sub _getKdeHomeMap +{ + my $self = shift; + + return; +} + +sub getProfileDPAth +{ + my $self = shift; + + + return "/etc/profile.d/slx-kdehome.sh"; +} + +sub getKdeHome +{ + my $self = shift; + + return ".openslx/ubuntu/kde"; +} + +sub getGconfPathConfig +{ + my $self = shift; + + return "/etc/gconf/2/path"; +} + + +sub getGconfHome +{ + my $self = shift; + + return ".openslx/ubuntu/gconf"; +} + +1; diff --git a/src/os-plugins/plugins/profile/OpenSLX/Distro/Ubuntu_10.pm b/src/os-plugins/plugins/profile/OpenSLX/Distro/Ubuntu_10.pm new file mode 100644 index 00000000..3b288e97 --- /dev/null +++ b/src/os-plugins/plugins/profile/OpenSLX/Distro/Ubuntu_10.pm @@ -0,0 +1,66 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# profile/OpenSLX/Distro/Ubuntu.pm +# - provides Debian-specific overrides of the Distro API for the profile +# plugin. +# ----------------------------------------------------------------------------- +package profile::OpenSLX::Distro::Ubuntu_10; + +use strict; +use warnings; + +use base qw(profile::OpenSLX::Distro::Base); + +use OpenSLX::Basics; +use OpenSLX::Utils; + +################################################################################ +### interface methods +################################################################################ + +sub _getKdeHomeMap +{ + my $self = shift; + + return; +} + +sub getProfileDPAth +{ + my $self = shift; + + + return "/etc/profile.d/slx-kdehome.sh"; +} + +sub getKdeHome +{ + my $self = shift; + + return ".openslx/ubuntu-lucid.kde"; +} + +sub getGconfPathConfig +{ + my $self = shift; + + return "/etc/gconf/2/path"; +} + + +sub getGconfHome +{ + my $self = shift; + + return ".openslx.ubuntu-lucid.gconf"; +} + +1; diff --git a/src/os-plugins/plugins/profile/OpenSLX/OSPlugin/profile.pm b/src/os-plugins/plugins/profile/OpenSLX/OSPlugin/profile.pm new file mode 100644 index 00000000..b9538374 --- /dev/null +++ b/src/os-plugins/plugins/profile/OpenSLX/OSPlugin/profile.pm @@ -0,0 +1,174 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# profile.pm +# ----------------------------------------------------------------------------- +package OpenSLX::OSPlugin::profile; + +use strict; +use warnings; + +use base qw(OpenSLX::OSPlugin::Base); + +use OpenSLX::Basics; +use OpenSLX::Utils; + +################################################################################ +# if you have any questions regarding the concept of OS-plugins and their +# implementation, please drop a mail to: ot@openslx.com, or join the IRC-channel +# '#openslx' (on freenode). +################################################################################ +sub new +{ + my $class = shift; + + my $self = { + name => 'profile', + }; + + return bless $self, $class; +} + +sub getInfo +{ + my $self = shift; + + return { + description => unshiftHereDoc(<<' End-of-Here'), + profile plugin .. + End-of-Here + precedence => 82, + }; +} + +sub getAttrInfo +{ + my $self = shift; + + return { + # attribute 'active' is mandatory for all plugins + 'profile::active' => { + applies_to_systems => 1, + applies_to_clients => 1, + description => unshiftHereDoc(<<' End-of-Here'), + should the 'profile'-plugin be executed during boot? + End-of-Here + content_regex => qr{^(0|1)$}, + content_descr => '1 means active - 0 means inactive', + default => '1', + }, + }; +} + +sub _writeKdehomeEnv +{ + my $self = shift; + + my $profileFile = unshiftHereDoc(<<' End-of-Here'); + # Do not modify this file. + # File generated by profile plugin. + # For more information have a look at + # http://lab.openslx.org/wiki/openslx/profile + + export KDEHOME=${HOME}/%s + End-of-Here + + $profileFile = sprintf( + $profileFile, + $self->{distro}->getKdeHome() + ); + + spitFile($self->{distro}->getProfileDPAth(), $profileFile); + + return $self->{distro}->getKdeHome(); +} + +sub _modifyGconfPaths +{ + my $self = shift; + + my $cmd = "sed -i \"s,readwrite:\\\$(HOME)/.gconf,readwrite:\\\$(HOME)/%s,\" %s"; + $cmd = sprintf ( + $cmd, + $self->{distro}->getGconfHome(), + $self->{distro}->getGconfPathConfig() + ); + + slxsystem($cmd); + + return $self->{distro}->getGconfHome(); +} + +sub _writeXsessionScript +{ + my $self = shift; + my @paths = @_; + + my $xsessionFile= unshiftHereDoc(<<' End-of-Here'); + # Do not modify this file. + # File generated by profile plugin. + # For more information have a look at + # http://lab.openslx.org/wiki/openslx/profile + + %s + End-of-Here + + my $cmd = "mkdir -p "; + + while (@paths) { + my $path = shift(@paths); + $cmd .= "\${HOME}/$path \\\n"; + } + + $cmd .= "> /dev/null 2>&1 \n"; + + $xsessionFile = sprintf( + $xsessionFile, + $cmd + ); + + spitFile($self->{distro}->getXsessionDPath(), $xsessionFile); + + return; +} + +sub installationPhase +{ + my $self = shift; + my $info = shift; + + my $pluginRepoPath = $info->{'plugin-repo-path'}; + my $pluginTempPath = $info->{'plugin-temp-path'}; + my $openslxBasePath = $info->{'openslx-base-path'}; + my $openslxConfigPath = $info->{'openslx-config-path'}; + my $attrs = $info->{'plugin-attrs'}; + + my @slxHomeEnv; + + push (@slxHomeEnv, $self->_writeKdehomeEnv()); + push (@slxHomeEnv, $self->_modifyGconfPaths()); + + $self->_writeXsessionScript(@slxHomeEnv); + + return; +} + +sub removalPhase +{ + my $self = shift; + my $info = shift; + + my $pluginRepoPath = $info->{'plugin-repo-path'}; + my $pluginTempPath = $info->{'plugin-temp-path'}; + + return; +} + +1; diff --git a/src/os-plugins/plugins/profile/XX_profile.sh b/src/os-plugins/plugins/profile/XX_profile.sh new file mode 100644 index 00000000..1589bd61 --- /dev/null +++ b/src/os-plugins/plugins/profile/XX_profile.sh @@ -0,0 +1,31 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program/file is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your feedback to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org +# +# script is included from init via the "." load function - thus it has all +# variables and functions available + +# check if the plugin config directory is generally available or if the client +# configuration failed somehow +[ -d /initramfs/plugin-conf ] || error "${init_picfg}" nonfatal + +# main script +if [ -e /initramfs/plugin-conf/profile.conf ]; then + . /initramfs/plugin-conf/profile.conf + + if [ $profile_active -ne 0 ]; then + [ $DEBUGLEVEL -gt 0 ] && echo "executing the 'profile' os-plugin ..."; + + + + [ $DEBUGLEVEL -gt 0 ] && echo "done with 'profile' os-plugin ..."; + + fi + +fi -- cgit v1.2.3-55-g7522