Recommit for updates in build 22

This commit is contained in:
2026-02-06 13:26:06 +01:00
parent ffa3362c3f
commit b443505fb6

View File

@@ -99,7 +99,7 @@
<div class="docstring"> <div class="docstring">
<div class="discussion"> <div class="discussion">
<p>confdroid_gitea::params.pp Module name: confdroid_gitea Author: 12ww1160 (12ww1160@confdroid.com)</p> <p>confdroid_gitea::params.pp Module name: confdroid_gitea Author: 12ww1160 (12ww1160@confdroid.com) @param [String] ga_admin_allow_create_organization Whether to allow admin to create organizations in Gitea.</p>
</div> </div>
</div> </div>
@@ -830,6 +830,73 @@
</li> </li>
<li>
<span class='name'>ga_lfs_jwt_secret</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;ChangeMeLFSJWTSecret&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The JWT secret for Git L FS in Gitea.</p>
</div>
</li>
<li>
<span class='name'>ga_internal_token</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;ChangeMeInternalToken&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The internal token for Gitea.</p>
</div>
</li>
<li>
<span class='name'>ga_jwt_secret</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;ChangeMeJWTSecret&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The JWT secret for Gitea.</p>
</div>
</li>
<li>
<span class='name'>ga_admin_allow_create_organization</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;true&#39;</tt>)</em>
</li>
</ul> </ul>
@@ -841,12 +908,6 @@
<pre class="lines"> <pre class="lines">
58
59
60
61
62
63
64 64
65 65
66 66
@@ -927,61 +988,73 @@
141 141
142 142
143 143
144</pre> 144
145
146
147
148
149
150
151
152
153</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 58</span> <pre class="code"><span class="info file"># File 'manifests/params.pp', line 64</span>
class confdroid_gitea::params ( class confdroid_gitea::params (
# main # main
Array $ga_reqpackages = [&#39;git&#39;, &#39;wget&#39;, &#39;tar&#39;], Array $ga_reqpackages = [&#39;git&#39;, &#39;wget&#39;, &#39;tar&#39;],
String $ga_pkg_ensure = &#39;present&#39;, String $ga_pkg_ensure = &#39;present&#39;,
String $ga_host_fqdn = &#39;gitea.example.net&#39;, String $ga_host_fqdn = &#39;gitea.example.net&#39;,
String $ga_opt_dir = &#39;/opt/gitea&#39;, String $ga_opt_dir = &#39;/opt/gitea&#39;,
String $ga_dl_url = &#39;https://dl.gitea.com/gitea&#39;, String $ga_dl_url = &#39;https://dl.gitea.com/gitea&#39;,
String $ga_dl_version = &#39;1.25.4&#39;, String $ga_dl_version = &#39;1.25.4&#39;,
String $ga_user = &#39;git&#39;, String $ga_user = &#39;git&#39;,
String $ga_domain = &#39;localhost&#39;, String $ga_domain = &#39;localhost&#39;,
String $ga_root_url = &#39;http://localhost:3000&#39;, String $ga_root_url = &#39;http://localhost:3000&#39;,
Boolean $ga_disable_ssh = false, Boolean $ga_disable_ssh = false,
Boolean $ga_start_lfs = true, Boolean $ga_start_lfs = true,
Boolean $ga_start_ssh = false, Boolean $ga_start_ssh = false,
String $ga_instance_name = &#39;Your Gitea Instance&#39;, String $ga_instance_name = &#39;Your Gitea Instance&#39;,
String $ga_lfs_jwt_secret = &#39;ChangeMeLFSJWTSecret&#39;,
# database # database
String $ga_db_type = &#39;postgres&#39;, String $ga_db_type = &#39;postgres&#39;,
String $ga_db_host = &#39;localhost&#39;, String $ga_db_host = &#39;localhost&#39;,
String $ga_db_port = &#39;5432&#39;, String $ga_db_port = &#39;5432&#39;,
String $ga_db_name = &#39;gitea&#39;, String $ga_db_name = &#39;gitea&#39;,
String $ga_db_user = &#39;ChangeMe&#39;, String $ga_db_user = &#39;ChangeMe&#39;,
String $ga_db_password = &#39;ChangeMe&#39;, String $ga_db_password = &#39;ChangeMe&#39;,
Boolean $ga_log_sql = false, Boolean $ga_log_sql = false,
String $ga_ssl_mode = &#39;require&#39;, String $ga_ssl_mode = &#39;require&#39;,
# logging # logging
String $ga_log_mode = &#39;file&#39;, String $ga_log_mode = &#39;file&#39;,
String $ga_log_level = &#39;info&#39;, String $ga_log_level = &#39;info&#39;,
# security # security
Boolean $ga_install_lock = true, Boolean $ga_install_lock = true,
String $ga_secret_key = &#39;ChangeMe1234567890&#39;, String $ga_secret_key = &#39;ChangeMe1234567890&#39;,
String $ga_reverse_proxy_limit = &#39;1&#39;, String $ga_reverse_proxy_limit = &#39;1&#39;,
String $ga_reverse_proxy_trusted_proxies = &#39;*&#39;, String $ga_reverse_proxy_trusted_proxies = &#39;*&#39;,
Boolean $ga_disable_root_check = true, Boolean $ga_disable_root_check = true,
String $ga_admin_username = &#39;admin&#39;, String $ga_admin_username = &#39;admin&#39;,
String $ga_admin_password = &#39;ChangeMeAdmin123!&#39;, String $ga_admin_password = &#39;ChangeMeAdmin123!&#39;,
String $ga_admin_email = &#39;admin@example.com&#39;, String $ga_admin_email = &#39;admin@example.com&#39;,
String $ga_admin_allow_create_organization = &#39;true&#39;,
String $ga_internal_token = &#39;ChangeMeInternalToken&#39;,
String $ga_jwt_secret = &#39;ChangeMeJWTSecret&#39;,
# service # service
Boolean $ga_disable_registration = false, Boolean $ga_disable_registration = false,
Boolean $ga_require_signin_view = false, Boolean $ga_require_signin_view = false,
Boolean $ga_enable_packages = true, Boolean $ga_enable_packages = true,
Boolean $ga_enable_registry = true, Boolean $ga_enable_registry = true,
String $ga_storage_type = &#39;filesystem&#39;, String $ga_storage_type = &#39;filesystem&#39;,
# firewall # firewall
Boolean $ga_use_firewall = true, Boolean $ga_use_firewall = true,
String $ga_http_port = &#39;3000&#39;, String $ga_http_port = &#39;3000&#39;,
String $ga_ssh_port = &#39;22&#39;, String $ga_ssh_port = &#39;22&#39;,
String $ga_order_prefix = &#39;50&#39;, String $ga_order_prefix = &#39;50&#39;,
) { ) {
# facts # facts