environment variables (2) authored by Rolf Niepraschk's avatar Rolf Niepraschk
......@@ -17,16 +17,37 @@ In der Datei `/etc/environment` müssen, ggf. abhängig von der Kalibriereinrich
|CE3||SE3|
|-------------|-|-------------|
|`METIS_FACILITY="CE3"`||`METIS_FACILITY="SE3"`|
|`DEVHUB_FACILITY=CE3`||`DEVHUB_FACILITY=SE3`|
|`METIS_FACILITY=CE3`||`METIS_FACILITY=SE3`|
|`METIS_BUILD_ON_START='mpd-ce3-sputter,mpd-ce3-calib,mpd-ce3-bake_out,mpd-ce3-srg_vg'`||`METIS_BUILD_ON_START='mpd-se3-servo,mpd-se3-valves,mpd-se3-state,mpd-se3-expansion,mpd-se3-direct,mpd-se3-expansion_fm_fs,mpd-frs5-cmp_calib,mpd-srg,mpd-dkm_ppc4_calib'`|
```
METIS_DEVHUB_URL="http://localhost:9009"
METIS*
CAL_USR="cal"
CAL_PWD="<password>"
JAVA_TOOL_OPTIONS="-Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2"
METIS_DEVHUB_URL='http://localhost:9009'
METIS_DEVPROXY_URL='http://localhost:8009'
METIS_LTMEM_HOST='localhost'
CAL_USR='cal'
CAL_PWD='<password>'
ADMIN_USR='admin'
ADMIN_PWD='<password>'
JAVA_TOOL_OPTIONS='-Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2'
PYTHONWARNINGS='ignore:Unverified HTTPS request'
ELAB_TOKEN='???????????????????????????????????????????'
ELAB_HOST='elabftw.ptb.de'
```
<!-- i75419:/etc/environment
CAL_PWD='9gW&V3'
CAL_USR='cal'
ADMIN_PWD='vakuum'
ADMIN_USR='admin'
ADMIN_SECRET='sYrocTAtiuMBL'
ELAB_TOKEN='a8c098f85c2a8ace84345bc0cc936cd3fc90582feaea87ecfa7209f698a731e76c7eb599e4b8c39882ad3'
EAKTE_USR='bock04'
EAKTE_PWD='h14h15!!'
-->
### Angaben zum Proxy-Server
Der spätere Build-Prozess benutzt nicht oder nicht immer die übliche Umgebungsvariable `https_proxy` beim Herunterladen externer Dateien unter Verwendung des Proxy-Servers. Um trotzdem erfolgreich zu sein, muss zusätzlich die folgende Konfigurationsdatei angelegt werden und die Angaben zum Proxy-Server enthalten:
......@@ -39,12 +60,12 @@ cat <<EOF >> ~/.m2/settings.xml
<settings>
<proxies>
<proxy>
<id>PTB</id>
<id>ptb-proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>webproxy.berlin.ptb.de</host>
<port>8080</port>
<nonProxyHosts>localhost|127.0.0.1|*.ptb.de</nonProxyHosts>
<nonProxyHosts>localhost|127.0.0.1|*.ptb.de|*.berlin.ptb.de</nonProxyHosts>
</proxy>
</proxies>
</settings>
......
......