2017-09-01 17:18:42 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-01 18:34:34 -05:00
|
|
|
OBS_API="${OBS_API:-https://api.opensuse.org/public}"
|
|
|
|
|
2017-09-01 17:18:42 -05:00
|
|
|
cat << eom > ~/.oscrc
|
|
|
|
[general]
|
2017-09-01 18:34:34 -05:00
|
|
|
apiurl = $OBS_API
|
|
|
|
[$OBS_API]
|
2017-09-01 17:18:42 -05:00
|
|
|
user = ${OBS_USER:-example}
|
|
|
|
pass = ${OBS_PASS:-example}
|
|
|
|
email = ${OBS_EMAIL:-example@example.com}
|
|
|
|
eom
|