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