Lines Matching full:installed

27     - system_support: If the package management program is installed on the
31 package manager if the package is installed
33 - installed: Whether the package is installed (True) on the system or not
47 # i_cmd - Command to determiine if package is installed
62 # Checking if package is installed
65 package_info['installed'] = True
67 package_info['installed'] = False
71 package_info['installed'] = False
113 - system_support: If the package management program is installed on the
117 package manager if the package is installed
119 - installed: Whether the package is installed (True) on the system or not
135 # i_cmd - Command to determiine if package is installed
143 # Checking if package is installed
145 not_inst_pattern = re.compile('not-installed', re.IGNORECASE)
148 package_info['installed'] = False
150 package_info['installed'] = True
154 package_info['installed'] = False
164 """Returns a list with the names of all currently installed packages."""
175 if parts[0] == "ii": # only grab "installed" packages
185 - system_support: If the package management program is installed on the
189 package manager if the package is installed
191 - installed: Whether the package is installed (True) on the system or not
224 Tries to install a package file. If the package is already installed,
232 installed = my_package_info['installed']
249 # RPM source packages can be installed along with the binary versions
251 if installed and not source:
252 return 'Package %s is already installed' % package
258 return 'Package %s was installed successfuly' % package
263 Convert packages with the 'alien' utility. If alien is not installed, it
270 e_msg = 'Cannot convert to %s, alien not installed' % destination_format
299 - conversion: True if the system can convert packages (alien installed),