| garciadeblas | cf603f5 | 2025-06-04 11:57:28 +0200 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | # |
| 15 | |
| 16 | set -e -o pipefail |
| 17 | |
| 18 | # Test if the user exists. Otherwise, create a git user |
| 19 | echo "Test if there is a git user. Otherwise, create it." |
| 20 | if [ ! -n "$(git config user.name)" ]; then |
| 21 | git config --global user.name osm_user |
| 22 | git config --global user.email osm_user@mydomain.com |
| 23 | fi |
| 24 | |
| 25 | # Test if the user exists. Otherwise, create a git user |
| 26 | echo "Checking if the user has an SSH key pair" |
| 27 | if [ ! -f "$HOME/.ssh/id_rsa" ]; then |
| 28 | echo "Generating an SSH key pair for the user" |
| 29 | ssh-keygen -t rsa -f "$HOME/.ssh/id_rsa" -N "" -q |
| 30 | fi |