d832fb6eb04745ca183d052669c031b2cfb5ea8a
[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
23 # TODO: Investigate using http://nixos.org/nix/
24
25 def install_packages_command(os, packages):
26     if not isinstance(packages, list):
27         packages = [packages]
28
29     cmd = "( %s )" % install_rpmfusion_command(os)
30     for p in packages:
31         cmd += " ; ( rpm -q %(package)s || sudo -S yum -y install %(package)s ) " % {
32                     'package': p}
33     
34     #cmd = ((rpm -q rpmfusion-free-release || sudo -s rpm -i ...) ; (rpm -q vim || sudo yum -y install vim))
35     return " ( %s )" % cmd 
36
37 def remove_packages_command(os, packages):
38     if not isinstance(packages, list):
39         packages = [packages]
40
41     cmd = ""
42     for p in packages:
43         cmd += " ( rpm -q %(package)s && sudo -S yum -y remove %(package)s ) ; " % {
44                     'package': p}
45
46     #cmd = (rpm -q vim || sudo yum -y remove vim) ; (...)
47     return cmd 
48
49 def install_rpmfusion_command(os):
50     cmd = "rpm -q rpmfusion-free-release || sudo -S rpm -i %(package)s"
51
52     if os == "f12":
53         cmd =  cmd %  {'package': RPM_FUSION_URL_F12}
54     elif os == "f14":
55         # This one works for f13+
56         cmd = cmd %  {'package': RPM_FUSION_URL}
57     else:
58         cmd = ""
59
60     return cmd
61