You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To avoid collisions with numerous PyPI and NPM packages and to better emphasize the purpose of the project we decided to rename the project as follows:
- html2pdf4doc (Pip)
- HTML2PDF4Doc (full name)
The rest of the migration will be performed gradually with separate PRs.
echo"error: html2print/docker: detected a wrong user: '$EXISTING_USER'. Ensure that any default users are removed from the Dockerfile. This entrypoint script is supposed to create a new user 'html2print'."
25
+
echo"error: html2pdf4doc/docker: detected a wrong user: '$EXISTING_USER'. Ensure that any default users are removed from the Dockerfile. This entrypoint script is supposed to create a new user 'html2pdf4doc'."
26
26
exit 1
27
27
else
28
28
# Ensure the group exists.
29
29
EXISTING_GROUP=$(getent group "$HOST_GID"| cut -d: -f1)
30
30
if [ -z"$EXISTING_GROUP" ];then
31
-
echo"html2print/docker: creating new group html2print with GID=$HOST_GID"
32
-
groupadd -g "$HOST_GID"html2print
31
+
echo"html2pdf4doc/docker: creating new group html2pdf4doc with GID=$HOST_GID"
32
+
groupadd -g "$HOST_GID"html2pdf4doc
33
33
else
34
-
echo"html2print/docker: group with GID=$HOST_GID already exists: $EXISTING_GROUP, reusing it."
34
+
echo"html2pdf4doc/docker: group with GID=$HOST_GID already exists: $EXISTING_GROUP, reusing it."
35
35
fi
36
36
37
37
# Create the user.
38
-
echo"html2print/docker: creating new user html2print with UID=$HOST_UID"
0 commit comments