OPSI Pakete: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
Zeile 50: Zeile 50:
 
* https://groups.google.com/forum/#!topic/de.comp.os.unix.linux.misc/kalwkd0NLSw
 
* https://groups.google.com/forum/#!topic/de.comp.os.unix.linux.misc/kalwkd0NLSw
 
* Datenablage mit 7zip auf Windows entpacken, codepage Probleme
 
* Datenablage mit 7zip auf Windows entpacken, codepage Probleme
 +
 +
=== Firefox ===
 +
Downloadlink
 +
* http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/latest/win32/de/
 +
* In diesem Verzeichniss liegt der aktuelle Firefox für win32 zum Download bereit.
 +
 +
z.B.
 +
21-Mar-2015
 +
Firefox Setup 36.0.4.exe 39M
 +
Firefox Setup Stub 36.0.4.exe 238K
 +
 +
Wir brauchen den Full-Installer.
 +
 +
==== Proof of Concept ====
 +
 +
#!/bin/bash
 +
cd /var/download/firefox
 +
A=ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/latest/win32/de/
 +
B=(curl -s "$A" --list-only |grep -v Stub); wget "$A/$B"
 +
ln -s /var/lib/opsi/depot/firefox/FirefoxSetup.exe $B
 +
 +
Dann immer im Firefoxverzeichniss im OPSI-Depot einen Softlink auf den aktuelle Installer setzen, der im setup.ins des Paketes hinterlegt ist.

Version vom 29. März 2015, 00:24 Uhr

Zurück zu OPSI

Allgemein

  • Entpacken eines OPSI-Paketes ohne OPSI-Tools.
cpio --extract < OPSI-Paket.opsi

Ergebniss

CLIENT_DATA.cpio.gz
OPSI.cpio.gz
gzip -d *.gz

Ergebniss

CLIENT_DATA.cpio
OPSI.cpio
 cpio --extract < *.cpio

You are done.

OPSI Pakete

activate_license

Die ini bezieht sich auf den Depotserver

vim /var/lib/opsi/config/depots/<hostname>.<domain>.local.ini
[activate_license-install]
productkey = ["<Windows Volume Licence Key"]
setkey = ["yes"]

windomain

Download at

[windomain-install]
account_ou = []
domain = ["<samba-domain>"]
method = ["auto"]
password = ["<password für user, der ein joindomain durchführen kann>"]
primarywinsserver = []
samba_domain = ["true"] = default ist false
secondarywinsserver = []
username = ["<user, der ein joindomain durchführen kann>"]

win7

unattende install

  • Password für den Administrator ändern
    • Default ist nt123, in der Datei unattend.xml zwei mal vorhanden.
    • Beide male durch das selbe, neue ersetzen.
vim /var/lib/opsi/depot/win7/custom/unattend.xml

Lernwerkstatt

Firefox

Downloadlink

z.B.

21-Mar-2015 
Firefox Setup 36.0.4.exe	39M	 
Firefox Setup Stub 36.0.4.exe	238K

Wir brauchen den Full-Installer.

Proof of Concept

#!/bin/bash
cd /var/download/firefox
A=ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/latest/win32/de/
B=(curl -s "$A" --list-only |grep -v Stub); wget "$A/$B"
ln -s /var/lib/opsi/depot/firefox/FirefoxSetup.exe $B

Dann immer im Firefoxverzeichniss im OPSI-Depot einen Softlink auf den aktuelle Installer setzen, der im setup.ins des Paketes hinterlegt ist.