Adding PlanetLab resources
[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 """
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 = ""
27     for p in packages:
28         cmd += " ( dpkg -s %(package)s || sudo -S apt-get -y install %(package)s ) ; " % {
29                 'package': p}
30    
31     #cmd = (dpkg -s vim || sudo dpkg -s install vim) ; (...)
32     return cmd 
33
34 def remove_packages_command(os, packages):
35     if not isinstance(packages, list):
36         packages = [packages]
37
38     cmd = ""
39     for p in packages:
40         cmd += " ( dpkg -s %(package)s && sudo -S apt-get -y purge %(package)s ) ; " % {
41                 'package': p}
42     
43     #cmd = (dpkg -s vim || sudo apt-get -y purge vim) ; (...)
44     return cmd 
45