summaryrefslogtreecommitdiffstats
path: root/src/installer/OpenSLX/OSSetup/MetaPackager/smart.pm
blob: fc178cb7a2341a740ff8aeaab65bf72a680fbcd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# Copyright (c) 2006, 2007 - 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/
# -----------------------------------------------------------------------------
# smart.pm
#    - provides smart-specific overrides of the OpenSLX::OSSetup::MetaPackager API.
# -----------------------------------------------------------------------------
package OpenSLX::OSSetup::MetaPackager::smart;

use strict;
use warnings;

use base qw(OpenSLX::OSSetup::MetaPackager::Base);

use OpenSLX::Basics;
use OpenSLX::Utils;

################################################################################
### implementation
################################################################################
sub new
{
    my $class = shift;
    my $self = {
        'name' => 'smart',
    };
    return bless $self, $class;
}

sub initPackageSources
{
    my $self = shift;

    $ENV{LC_ALL} = 'POSIX';

    # remove any existing channels
    slxsystem("rm -f /etc/smart/channels/*");
    if (slxsystem("smart channel -y --remove-all")) {
        die _tr("unable to remove existing channels (%s)\n", $!);
    }
    return 1;
}

sub setupPackageSource
{
    my $self        = shift;
    my $repoName    = shift;
    my $repoInfo    = shift;
    my $excludeList = shift;
    my $repoURLs    = shift;

    my $repoSubdir = '';
    if ($repoInfo->{'repo-subdir'}) {
        $repoSubdir = "/$repoInfo->{'repo-subdir'}";
    }
    my $baseURL = shift @$repoURLs;
    my $repoDescr
        = qq[$repoName name="$repoInfo->{name}" baseurl=$baseURL$repoSubdir];
    $repoDescr .= " type=rpm-md";
    if (slxsystem("smart channel -y --add $repoDescr")) {
        die _tr("unable to add channel '%s' (%s)\n", $repoName, $!);
    }

    my $mirrorDescr;
    foreach my $mirrorURL (@$repoURLs) {
        $mirrorDescr .= " --add $baseURL$repoSubdir $mirrorURL$repoSubdir";
    }
    if (defined $mirrorDescr) {
        if (slxsystem("smart mirror $mirrorDescr")) {
            die _tr(
                "unable to add mirrors for channel '%s' (%s)\n", 
                $repoName, $!
            );
        }
    }
    return 1;
}

sub installPackages
{
    my $self      = shift;
    my $packages  = shift;
    my $doRefresh = shift || 0;

    $packages =~ tr{\n}{ };

    if ($doRefresh && slxsystem("smart update")) {
        die _tr("unable to update channel info (%s)\n", $!);
    }
    if (slxsystem("smart install -y $packages")) {
        die _tr("unable to install selection (%s)\n", $!);
    }
    return 1;
}

sub removePackages
{
    my $self         = shift;
    my $pkgSelection = shift;

    if (slxsystem("smart remove -y $pkgSelection")) {
        die _tr("unable to remove selection (%s)\n", $!);
    }
    return 1;
}

sub updateBasicVendorOS
{
    my $self = shift;

    if (slxsystem("smart upgrade -y --update")) {
        if ($! == 2) {
            # file not found => smart isn't installed
            die _tr("unable to update this vendor-os, as it seems to lack an installation of smart!\n");
        }
        die _tr("unable to update this vendor-os (%s)\n", $!);
    }
    return 1;
}

1;