Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
slapos
Commits
0e352ff7
Commit
0e352ff7
authored
Nov 28, 2022
by
Boxiang Sun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
theia: peertube test fixup
parent
16a8c954
Pipeline
#25068
passed with stage
in 0 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
14 deletions
+11
-14
software/peertube/buildout.hash.cfg
software/peertube/buildout.hash.cfg
+2
-2
software/peertube/instance-peertube.cfg.in
software/peertube/instance-peertube.cfg.in
+8
-2
software/peertube/template-peertube-restore.sh.in
software/peertube/template-peertube-restore.sh.in
+1
-10
No files found.
software/peertube/buildout.hash.cfg
View file @
0e352ff7
...
...
@@ -18,7 +18,7 @@ md5sum = 35690065ba18dc49d0108fc1f0a07b9e
[instance-peertube]
_update_hash_filename_ = instance-peertube.cfg.in
md5sum =
0bc5a5fbf922fc884f00038f19faa147
md5sum =
5c46dd0727254b9ce0dadb396c57834b
[template-nginx-service]
filename = template-nginx-service.sh.in
...
...
@@ -54,4 +54,4 @@ md5sum = 58d1a4fe246169dea94d7d243b4bac9e
[template-peertube-restore-script]
filename = template-peertube-restore.sh.in
md5sum =
fb7b8ebb4724495a7d17ab93c846451
5
md5sum =
dd19cdff0e5af606a4359f7ccf8beaa
5
software/peertube/instance-peertube.cfg.in
View file @
0e352ff7
...
...
@@ -52,6 +52,12 @@ ssl = ${:etc}/ssl
[postgresql-password]
recipe = slapos.cookbook:generate.password
[postgresql-address]
recipe = slapos.cookbook:free_port
minimum = 5432
maximum = 5452
ip = {{ ipv4_random }}
[postgresql]
recipe = slapos.cookbook:postgres
bin = {{ postgresql10_location }}/bin/
...
...
@@ -61,10 +67,10 @@ superuser = peertube
password = ${postgresql-password:passwd}
pgdata-directory = ${directory:srv}/postgresql
ipv4 =
{{ ipv4_random }
}
ipv4 =
${postgresql-address:ip
}
# disable listening on ipv6
ipv6 =
port =
5432
port =
${postgresql-address:port}
[postgresql-binary-link]
recipe = slapos.cookbook:symbolic.link
...
...
software/peertube/template-peertube-restore.sh.in
View file @
0e352ff7
...
...
@@ -10,12 +10,6 @@
# Depending on the output, it will create a file containing
# the status of the restoration (success or failure)
slapos node stop all
slapos_node_status_pid=$!
echo $slapos_node_status_pid
wait $slapos_node_status_pid
die() {
echo "$*" 1>&2
exit 1
...
...
@@ -40,11 +34,8 @@ echo "Postgresql data directory is ready"
# which means if the postmaster.pid exist, then the postgresql is running.
pid_file=$${postgresql:pgdata-directory}/postmaster.pid
if [ -e "$pid_file" ]; then
echo "Postgresql is running,
continue
."
echo "Postgresql is running,
this should not happened, aborting
."
else
echo "Stop postgresql service"
$${postgresql:bin}/pg_ctl -D $${postgresql:pgdata-directory} stop
wait
echo "Starting postgresql..."
$${postgresql:bin}/postgres -D $${postgresql:pgdata-directory}
wait
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment