5d17b3169db33d0c427bc03ab870e847fb9a48fe
[nepi.git] / src / nepi / resources / linux / rpmfuncs.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2013 INRIA
4 #
5 #    This program is free software: you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License as published by
7 #    the Free Software Foundation, either version 3 of the License, or
8 #    (at your option) any later version.
9 #
10 #    This program is distributed in the hope that it will be useful,
11 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #    GNU General Public License for more details.
14 #
15 #    You should have received a copy of the GNU General Public License
16 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
19
20 RPM_FUSION_URL = 'http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm'
21 RPM_FUSION_URL_F12 = 'http://download1.rpmfusion.org/free/fedora/releases/12/Everything/x86_64/os/rpmfusion-free-release-12-1.noarch.rpm'
22 RPM_FUSION_URL_F14 = 'http://download1.rpmfusion.org/free/fedora/releases/14/Everything/x86_64/os/rpmfusion-free-release-14-0.4.noarch.rpm'
23
24
25 # TODO: Investigate using http://nixos.org/nix/
26
27 def install_packages_command(os, packages):
28     if not isinstance(packages, list):
29         packages = [packages]
30
31     cmd = install_rpmfusion_command(os)
32     if cmd: cmd += " ; "
33     cmd += " && ".join(map(lambda p: 
34             " { rpm -q %(package)s || sudo -S yum -y install --nogpgcheck %(package)s ; } " % {
35                     'package': p}, packages))
36     
37     #cmd = { rpm -q rpmfusion-free-release || sudo -s rpm -i ... ; } && { rpm -q vim || sudo yum -y install vim ; } && ..
38     return cmd 
39
40 def remove_packages_command(os, packages):
41     if not isinstance(packages, list):
42         packages = [packages]
43
44     cmd = " && ".join(map(lambda p: 
45             " { rpm -q %(package)s && sudo -S yum -y remove %(package)s ; } " % {
46                     'package': p}, packages))
47         
48     #cmd = { rpm -q vim && sudo yum -y remove vim ; } && ..
49     return cmd 
50
51 def install_rpmfusion_command(os):
52     from nepi.resources.linux.node import OSType
53
54     cmd = " { rpm -q rpmfusion-free-release || sudo -S rpm -i %(package)s ; } "
55
56     if (os & OSType.FEDORA_8):
57         # RpmFusion for Fedora 8 is unmaintained 
58         cmd = ""
59     elif (os & OSType.FEDORA_12):
60         # For f12
61         cmd =  cmd %  {'package': RPM_FUSION_URL_F12}
62     elif (os & OSType.FEDORA_14):
63         # For f14
64         cmd = cmd %  {'package': RPM_FUSION_URL_F14}
65     else:
66         # For f14+
67         cmd = cmd %  {'package': RPM_FUSION_URL}
68
69     return cmd
70