mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-25 17:10:27 +00:00
git
This commit is contained in:
parent
1b971ad5fd
commit
af62bc1c60
2 changed files with 19 additions and 8 deletions
|
@ -25,7 +25,7 @@ admin_email="help@websoft9.com"
|
|||
|
||||
if [ -e "$cred_path" ]; then
|
||||
echo "File $cred_path exists. Exiting script."
|
||||
exit 1
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "create diretory"
|
||||
|
|
|
@ -1,25 +1,36 @@
|
|||
#!/bin/bash
|
||||
|
||||
echo "start create user shell"
|
||||
|
||||
echo "start create user shell" >> /tmp/user
|
||||
set -e
|
||||
|
||||
# Confirm gitea is running
|
||||
count=1
|
||||
response=""
|
||||
while [ "$response" != "200" ]; do
|
||||
response=$(curl -s -o /dev/null -w "%{http_code}" localhost:3000)
|
||||
if [ "$response" = "200" ]; then
|
||||
echo "gitea is runing"
|
||||
break
|
||||
fi
|
||||
count=$((count+1))
|
||||
if [ $count -gt 10 ]; then
|
||||
echo "gitea is not runing"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
cred_path="/var/websoft9/credential"
|
||||
admin_username="websoft9"
|
||||
admin_email="help@websoft9.com"
|
||||
|
||||
if [ -e "$cred_path" ]; then
|
||||
echo "File $cred_path exists. Exiting script."
|
||||
exit 1
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "create diretory"
|
||||
mkdir -p "$(dirname "$cred_path")"
|
||||
|
||||
|
||||
# TODO IF admin is exists, echo it to cred_path
|
||||
# TODO wait culr localhost:3000
|
||||
|
||||
echo "Create admin credential by admin cli"
|
||||
su -c "
|
||||
gitea admin user create --admin --username '$admin_username' --random-password --email '$admin_email' > /tmp/credential
|
||||
|
|
Loading…
Reference in a new issue