File tree 6 files changed +11
-7
lines changed
confconsole/plugins.d/Lets_Encrypt
6 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,11 @@ sed -i "/gitlab_rails\['gitlab_email_subject_suffix'\]/ s|=.*|= '\[$APP_NAME\]'|
33
33
# set up GitLab
34
34
export LC_ALL=C.UTF-8 # explicitly set UTF8 to avoid GitLab bitchin...
35
35
service gitlab-runsvdir start
36
+ sleep 1
37
+
38
+ # https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/3552#note_88614190
39
+ touch /.dockerenv
40
+
36
41
gitlab-ctl reconfigure
37
42
38
43
# disable GitLab WebUI prompting to set 'root' GitLab user password (TurnKey
@@ -63,6 +68,7 @@ sed -i "/postgresql\['dynamic_shared_memory_type'\]/ s|= 'mmap'|= nil|" $CONF
63
68
sed -i " /postgresql\['shared_buffers'\]/ s|^|# |" $CONF
64
69
sed -i " /postgresql\['shared_buffers'\]/ s|=.*|= \" 256MB\" |" $CONF
65
70
71
+ rm /.dockerenv
66
72
service gitlab-runsvdir stop
67
73
# ensure that the overlay turnkey service is the one that is enabled
68
74
systemctl disable gitlab-runsvdir.service
Original file line number Diff line number Diff line change 1
1
# this file was created by TurnKey Linux for use with the
2
2
# repository at https://packages.gitlab.com/gitlab/gitlab-ce
3
3
4
- deb [signed-by=/usr/share/keyrings/gitlab-ce.gpg] https://packages.gitlab.com/gitlab/gitlab-ce/debian/ buster main
5
- deb-src [signed-by=/usr/share/keyrings/gitlab-ce.gpg] https://packages.gitlab.com/gitlab/gitlab-ce/debian/ buster main
4
+ deb [signed-by=/usr/share/keyrings/gitlab-ce.gpg] https://packages.gitlab.com/gitlab/gitlab-ce/debian/ bullseye main
5
+ deb-src [signed-by=/usr/share/keyrings/gitlab-ce.gpg] https://packages.gitlab.com/gitlab/gitlab-ce/debian/ bullseye main
Original file line number Diff line number Diff line change 1
- root
Original file line number Diff line number Diff line change 7
7
# import inithooks_cache (from absolute path) for managing domain caching
8
8
import sys
9
9
sys .path .append ('/usr/lib/inithooks/bin' )
10
- import inithooks_cache
10
+ from libinithooks import inithooks_cache
11
11
12
12
LE_INFO_URL = 'https://acme-v02.api.letsencrypt.org/directory'
13
13
Original file line number Diff line number Diff line change 11
11
12
12
import sys
13
13
import getopt
14
- import inithooks_cache
14
+ from libinithooks import inithooks_cache
15
15
import os
16
16
import pwd
17
17
import subprocess
18
18
19
- from dialog_wrapper import Dialog
19
+ from libinithooks . dialog_wrapper import Dialog
20
20
21
21
22
22
def usage (s = None ):
Original file line number Diff line number Diff line change 1
1
#include <turnkey/base>
2
2
3
3
sudo
4
- incron /* To update TasksMax in TurnKey overlay service */
You can’t perform that action at this time.
0 commit comments