Skip to content

Commit

Permalink
Disable run user change in installation page (#22499)
Browse files Browse the repository at this point in the history
The run user should not be changed on the installation page because it
will not be any effect to Gitea.

This PR disabled the input box of run user.
  • Loading branch information
lunny authored Jul 6, 2023
1 parent ab60957 commit d17a848
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion options/locale/locale_en-US.ini
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ repo_path_helper = Remote Git repositories will be saved to this directory.
lfs_path = Git LFS Root Path
lfs_path_helper = Files tracked by Git LFS will be stored in this directory. Leave empty to disable.
run_user = Run As Username
run_user_helper = Enter the operating system username that Gitea runs as. Note that this user must have access to the repository root path.
run_user_helper = The operating system username that Gitea runs as. Note that this user must have access to the repository root path.
domain = Server Domain
domain_helper = Domain or host address for the server.
ssh_port = SSH Server Port
Expand Down
2 changes: 1 addition & 1 deletion templates/install.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
</div>
<div class="inline required field {{if .Err_RunUser}}error{{end}}">
<label for="run_user">{{.locale.Tr "install.run_user"}}</label>
<input id="run_user" name="run_user" value="{{.run_user}}" required>
<input id="run_user" name="run_user" value="{{.run_user}}" readonly>
<span class="help">{{.locale.Tr "install.run_user_helper"}}</span>
</div>
<div class="inline required field">
Expand Down

0 comments on commit d17a848

Please sign in to comment.