02d165707d313e84e99068c366b1bafb9516418a
[nepi.git] / src / nepi / resources / linux / debfuncs.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 # TODO: Investigate using http://nixos.org/nix/
21
22 def install_packages_command(os, packages):
23     if not isinstance(packages, list):
24         packages = [packages]
25
26     cmd = " && ".join(map(lambda p: 
27             " { dpkg -s %(package)s || sudo -S apt-get -y install %(package)s ; } " % {
28                     'package': p}, packages))
29         
30     #cmd = { dpkg -s vim || sudo -S apt-get -y install vim ; } && ..
31     return cmd 
32
33 def remove_packages_command(os, packages):
34     if not isinstance(packages, list):
35         packages = [packages]
36
37     cmd = " && ".join(map(lambda p: 
38             " { dpkg -s %(package)s && sudo -S apt-get -y purge %(package)s ; } " % {
39                     'package': p}, packages))
40         
41     #cmd = { dpkg -s vim && sudo -S apt-get -y purge vim ; } && ..
42     return cmd 
43