summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/x11vnc/OpenSLX/Distro/Base.pm
diff options
context:
space:
mode:
authorDirk von Suchodoletz2008-12-17 17:39:51 +0100
committerDirk von Suchodoletz2008-12-17 17:39:51 +0100
commite335b2132f6c9508861c01cda50ce8734b872b4e (patch)
treec51828ae7eb73b34af8deec0fbe2e8ecfdf2b617 /os-plugins/plugins/x11vnc/OpenSLX/Distro/Base.pm
parentMore general location of helper functions (to check if a certain (diff)
downloadcore-e335b2132f6c9508861c01cda50ce8734b872b4e.tar.gz
core-e335b2132f6c9508861c01cda50ce8734b872b4e.tar.xz
core-e335b2132f6c9508861c01cda50ce8734b872b4e.zip
Trying to simplify stuff in plugins (checks if a certain package
is installed and installing ...) git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2427 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/x11vnc/OpenSLX/Distro/Base.pm')
-rw-r--r--os-plugins/plugins/x11vnc/OpenSLX/Distro/Base.pm15
1 files changed, 0 insertions, 15 deletions
diff --git a/os-plugins/plugins/x11vnc/OpenSLX/Distro/Base.pm b/os-plugins/plugins/x11vnc/OpenSLX/Distro/Base.pm
index 93f1a3eb..e0ab45ae 100644
--- a/os-plugins/plugins/x11vnc/OpenSLX/Distro/Base.pm
+++ b/os-plugins/plugins/x11vnc/OpenSLX/Distro/Base.pm
@@ -89,19 +89,4 @@ sub fillRunlevelScript
return $script;
}
-sub isX11vncInstalled
-{
- my $self = shift;
- return $self->isInPath('x11vnc');
-}
-
-sub installX11vnc
-{
- my $self = shift;
- $self->{engine}->installPackages(
- $self->{engine}->getInstallablePackagesForSelection('x11vnc')
- );
- return 1;
-}
-
1;