mirror of
				https://github.com/dockersrc/alpine
				synced 2025-11-04 01:02:03 -05:00 
			
		
		
		
	🗃️ Committing everything that changed 🗃️
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				alpine-3-14 / alpine-3-14 (push) Successful in 22m1s
				
			
		
			
				
	
				alpine-3-15 / alpine-3-15 (push) Successful in 23m15s
				
			
		
			
				
	
				alpine-3-16 / alpine-3-16 (push) Successful in 23m28s
				
			
		
			
				
	
				alpine-3-17 / alpine-3-17 (push) Successful in 24m54s
				
			
		
			
				
	
				alpine-3-18 / alpine-3-18 (push) Successful in 19m56s
				
			
		
			
				
	
				alpine-3-19 / alpine-3-19 (push) Successful in 30m59s
				
			
		
			
				
	
				alpine-3-20 / alpine-3-20 (push) Successful in 23m25s
				
			
		
			
				
	
				alpine-3-21 / alpine-3-20 (push) Successful in 24m59s
				
			
		
			
				
	
				alpine-edge / alpine-edge (push) Successful in 27m46s
				
			
		
			
				
	
				alpine-latest / alpine-latest (push) Successful in 20m52s
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	alpine-3-14 / alpine-3-14 (push) Successful in 22m1s
				
			alpine-3-15 / alpine-3-15 (push) Successful in 23m15s
				
			alpine-3-16 / alpine-3-16 (push) Successful in 23m28s
				
			alpine-3-17 / alpine-3-17 (push) Successful in 24m54s
				
			alpine-3-18 / alpine-3-18 (push) Successful in 19m56s
				
			alpine-3-19 / alpine-3-19 (push) Successful in 30m59s
				
			alpine-3-20 / alpine-3-20 (push) Successful in 23m25s
				
			alpine-3-21 / alpine-3-20 (push) Successful in 24m59s
				
			alpine-edge / alpine-edge (push) Successful in 27m46s
				
			alpine-latest / alpine-latest (push) Successful in 20m52s
				
			rootfs/usr/local/etc/docker/functions/entrypoint.sh
This commit is contained in:
		@@ -124,9 +124,13 @@ __init_working_dir() {
 | 
			
		||||
}
 | 
			
		||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
			
		||||
__exec_service() {
 | 
			
		||||
  local count=6
 | 
			
		||||
  echo "Starting $1"
 | 
			
		||||
  eval "$@" 2>>/dev/stderr &
 | 
			
		||||
  [ $? -eq 0 ] && touch "/run/init.d/$1.pid" || return 1
 | 
			
		||||
  eval "$@" 2>>/dev/stderr >>/data/logs/start.log &
 | 
			
		||||
  while [ $count -ne 0 ]; do
 | 
			
		||||
    sleep 10
 | 
			
		||||
    __pgrep $1 && touch "/run/init.d/$1.pid" && break || count=$((count - 1))
 | 
			
		||||
  done
 | 
			
		||||
}
 | 
			
		||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
			
		||||
__update_ssl_certs() {
 | 
			
		||||
@@ -418,7 +422,7 @@ __file_copy() {
 | 
			
		||||
__generate_random_uids() {
 | 
			
		||||
  local set_random_uid="$(seq 3000 5000 | sort -R | head -n 1)"
 | 
			
		||||
  while :; do
 | 
			
		||||
    if grep -qs "x:.*:$set_random_uid:" "/etc/group" && ! grep -shq "x:$set_random_uid:.*:" "/etc/passwd"; then
 | 
			
		||||
    if grep -shq "x:.*:$set_random_uid:" "/etc/group" && ! grep -shq "x:$set_random_uid:.*:" "/etc/passwd"; then
 | 
			
		||||
      set_random_uid=$((set_random_uid + 1))
 | 
			
		||||
    else
 | 
			
		||||
      echo "$set_random_uid"
 | 
			
		||||
@@ -538,7 +542,7 @@ __create_service_user() {
 | 
			
		||||
  local create_gid="${5:-${SERVICE_GID:-$USER_GID}}"
 | 
			
		||||
  local random_id="$(__generate_random_uids)"
 | 
			
		||||
  local create_home_dir="${create_home_dir:-/home/$create_user}"
 | 
			
		||||
  grep -shq "^$create_user:" "/etc/passwd" && grep -sh "^$create_group:" "/etc/group" && return
 | 
			
		||||
  grep -shq "^$create_user:" "/etc/passwd" && grep -shq "^$create_group:" "/etc/group" && return
 | 
			
		||||
  [ "$create_user" = "root" ] && [ "$create_group" = "root" ] && return 0
 | 
			
		||||
  if [ "$RUNAS_USER" != "root" ] && [ "$RUNAS_USER" != "" ]; then
 | 
			
		||||
    create_user="$RUNAS_USER"
 | 
			
		||||
@@ -566,8 +570,8 @@ __create_service_user() {
 | 
			
		||||
    echo "creating system user $create_user"
 | 
			
		||||
    useradd --system -u $create_uid -g $create_group -c "Account for $create_user" -d "$create_home_dir" -s /bin/false $create_user 2>/dev/stderr | tee -p -a "/data/logs/init.txt" >/dev/null
 | 
			
		||||
  fi
 | 
			
		||||
  grep -qs "$create_group" "/etc/group" || exitStatus=$((exitCode + 1))
 | 
			
		||||
  grep -qs "$create_user" "/etc/passwd" || exitStatus=$((exitCode + 1))
 | 
			
		||||
  grep -shq "$create_group" "/etc/group" || exitStatus=$((exitCode + 1))
 | 
			
		||||
  grep -shq "$create_user" "/etc/passwd" || exitStatus=$((exitCode + 1))
 | 
			
		||||
  if [ $exitStatus -eq 0 ]; then
 | 
			
		||||
    export WORK_DIR="${create_home_dir:-}"
 | 
			
		||||
    if [ -n "$WORK_DIR" ]; then
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user