Most software missing from Product Configuration tab

Antworten
ttblum
Beiträge: 97
Registriert: 23 Jun 2017, 14:18
Wohnort: Cleveland, Ohio USA

Most software missing from Product Configuration tab

Beitrag von ttblum »

Hello,

My Product Configuration tab doesn't show software such as 7-zip, PDFCreator, etc.

Should I add 'http://download.uib.de/opsi_stable/prod ... ll-package' to my /etc/opsi/opsi-product-updater.conf ? If so, what should the syntax be?

Is there a list of software repositories I can choose from?

Here's my current repository_uib section of /etc/opsi/opsi-product-updater.conf :

Code: Alles auswählen

[repository_uib]
; Activate/deactivate the repository
active = true
; If the repository is an opsi depot, opsiDepotId should be set
; In that case it is not required (but allowed) to set baseUrl, dirs, username and password
opsiDepotId =
; The base url of a product package repository
baseUrl = http://download.uib.de
; Comma separated directories to include in search for product packages
; Use / if search should be done in baseUrl
dirs = opsi4.0/products/localboot, opsi4.0/products/netboot
; Comma separated list of productIds that will be updated
; If a product package file matches this regular expression it will be downloaded.
; Regular Expressions made under excludes can override anything under this.
includeProductIds =
; Comma separated list of regular expressions
; If a product package file matches one of these regular expressions it will not be downloaded
; excludes = ^win.*
; Username for connection to repository
username =
; Password for connection to repository
password =
; AutoInstall will be checked if a product package is found on the repository
; and the product is not yet installed on the local depot
autoInstall = false
; AutoUpdate will be checked if a product is already installed on the local depot
; and a more recent product version is found in the repository
autoUpdate = true
; If autoSetup is set to true, the action request "setup" will be set for every updated product
; on all clients of the local depot where the installation status of the product is "installed"
autoSetup = false
; Set True if you want only Download packages without installation
onlyDownload = false
; Set Proxy handler like: http://10.10.10.1:8080
proxy =
Benutzeravatar
n.wenselowski
Ex-uib-Team
Beiträge: 3194
Registriert: 04 Apr 2013, 12:15

Re: Most software missing from Product Configuration tab

Beitrag von n.wenselowski »

Hi,
ttblum hat geschrieben:My Product Configuration tab doesn't show software such as 7-zip, PDFCreator, etc.
Someone has to package them - be it you or some other opsi users ;)
ttblum hat geschrieben:Is there a list of software repositories I can choose from?
There are some free and public opsi repositories listed in the wiki.
ttblum hat geschrieben:Should I add 'http://download.uib.de/opsi_stable/prod ... ll-package' to my /etc/opsi/opsi-product-updater.conf ? If so, what should the syntax be?
You can add it if it contains packages you want.

I'd suggest using a separate section.
With opsi 4.1 you will be able to select what repositories to use from the commandline when running the new opsi-package-updater and this makes use of the section identifier.

Based on your current config:

Code: Alles auswählen

[repository_uib_contribute_full]
active = true
baseUrl = http://download.uib.de
dirs = http://download.uib.de/opsi4.0/products/contribute/full-package/

; AutoInstall will be checked if a product package is found on the repository
; and the product is not yet installed on the local depot
autoInstall = false
; AutoUpdate will be checked if a product is already installed on the local depot
; and a more recent product version is found in the repository
autoUpdate = true
; If autoSetup is set to true, the action request "setup" will be set for every updated product
; on all clients of the local depot where the installation status of the product is "installed"
autoSetup = false
; Set Proxy handler like: http://10.10.10.1:8080
proxy =
Please check the settings autoInstall, autoUpdate, autoSetup and proxy if they match your desired behaviour / need a proxy configured.


Kind regards

Niko

Code: Alles auswählen

import OPSI
Antworten