blob: e3046fabc7f0c0515090ffcd2ed3c812336a8bac [file] [log] [blame]
garciadeblascf603f52025-06-04 11:57:28 +02001#!/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
16set -e -o pipefail
17
18# Test if the user exists. Otherwise, create a git user
19echo "Test if there is a git user. Otherwise, create it."
20if [ ! -n "$(git config user.name)" ]; then
21 git config --global user.name osm_user
22 git config --global user.email osm_user@mydomain.com
23fi
24
25# Test if the user exists. Otherwise, create a git user
26echo "Checking if the user has an SSH key pair"
27if [ ! -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
30fi