def remove(self, pkgs): SyncPkg.remove(self, pkgs) os.putenv('DEBIAN_FRONTEND', 'noninteractive') cmd = 'apt-get -y remove ' + string.join(pkgs) synctool_lib.shell_command(cmd)
def remove(self, pkgs): SyncPkg.remove(self, pkgs) os.putenv("DEBIAN_FRONTEND", "noninteractive") cmd = "apt-get -y remove " + string.join(pkgs) synctool_lib.shell_command(cmd)
def remove(self, pkgs): SyncPkg.remove(self, pkgs) cmd = 'brew remove ' + string.join(pkgs) synctool_lib.shell_command(cmd)
def remove(self, pkgs): SyncPkg.remove(self, pkgs) cmd = "pacman -Rs --noconfirm " + string.join(pkgs) synctool_lib.shell_command(cmd)
def remove(self, pkgs): SyncPkg.remove(self, pkgs) cmd = 'zypper --non-interactive remove ' + string.join(pkgs) synctool_lib.shell_command(cmd)
def remove(self, pkgs): SyncPkg.remove(self, pkgs) cmd = 'pkg_delete -v ' + string.join(pkgs) synctool_lib.shell_command(cmd)