Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
freedombone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Context Sensitive Group
freedombone
Commits
e14f250b
Commit
e14f250b
authored
7 years ago
by
Bob Mottram
Browse files
Options
Downloads
Patches
Plain Diff
updates after restoring GS/pA
parent
e973bce5
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/freedombone-app-gnusocial
+4
-6
4 additions, 6 deletions
src/freedombone-app-gnusocial
src/freedombone-app-postactiv
+2
-6
2 additions, 6 deletions
src/freedombone-app-postactiv
src/freedombone-utils-gnusocialtools
+26
-0
26 additions, 0 deletions
src/freedombone-utils-gnusocialtools
with
32 additions
and
12 deletions
src/freedombone-app-gnusocial
+
4
−
6
View file @
e14f250b
...
...
@@ -405,9 +405,8 @@ function restore_local_gnusocial {
rm
-rf
$temp_restore_dir
fi
# start the daemons
cd
$gnusocial_dir
su
-c
"sh scripts/startdaemons.sh"
-s
/bin/sh www-data
gnusocial_update_after_restore gnusocial
${
GNUSOCIAL_DOMAIN_NAME
}
echo
$"Restore of gnusocial complete"
fi
}
...
...
@@ -454,9 +453,8 @@ function restore_remote_gnusocial {
rm
-rf
/root/tempgnusocial
fi
# start the daemons
cd
/var/www/
${
GNUSOCIAL_DOMAIN_NAME
}
/htdocs
su
-c
"sh scripts/startdaemons.sh"
-s
/bin/sh www-data
gnusocial_update_after_restore gnusocial
${
GNUSOCIAL_DOMAIN_NAME
}
echo
$"Restore of gnusocial complete"
fi
}
...
...
This diff is collapsed.
Click to expand it.
src/freedombone-app-postactiv
+
2
−
6
View file @
e14f250b
...
...
@@ -420,9 +420,7 @@ function restore_local_postactiv {
rm
-rf
$temp_restore_dir
fi
# start the daemons
cd
$postactiv_dir
su
-c
"sh scripts/startdaemons.sh"
-s
/bin/sh www-data
gnusocial_update_after_restore postactiv
${
POSTACTIV_DOMAIN_NAME
}
fi
}
...
...
@@ -465,9 +463,7 @@ function restore_remote_postactiv {
rm
-rf
/root/temppostactiv
fi
# start the daemons
cd
/var/www/
${
POSTACTIV_DOMAIN_NAME
}
/htdocs
su
-c
"sh scripts/startdaemons.sh"
-s
/bin/sh www-data
gnusocial_update_after_restore postactiv
${
POSTACTIV_DOMAIN_NAME
}
fi
}
...
...
This diff is collapsed.
Click to expand it.
src/freedombone-utils-gnusocialtools
+
26
−
0
View file @
e14f250b
...
...
@@ -46,6 +46,32 @@ SHARINGS_THEME_COMMIT='7106c7ef03'
GNUSOCIAL_MARKDOWN_REPO
=
"https://git.gnu.io/chimo/markdown.git"
GNUSOCIAL_MARKDOWN_COMMIT
=
'03c53942f94b3376f0946e6e1fe566cc21ccf232'
# Stuff to be done after restoring from backup
function
gnusocial_update_after_restore
{
gnusocial_variant
=
$1
gnusocial_domain
=
$2
cd
/var/www/
${
gnusocial_domain
}
/htdocs
# Ensure that the database password is correct
MARIADB_PASSWORD
=
$(
${
PROJECT_NAME
}
-pass
-u
root
-a
mariadb
)
sed
-i
"s|
\$
config['db']['database'].*|
\$
config['db']['database'] = 'mysqli://root:
${
MARIADB_PASSWORD
}
@localhost/
${
gnusocial_variant
}
';|g"
config.php
# Set permissions
chmod
g+w /var/www/
$gnusocial_domain
/htdocs
chmod
a+w /var/www/
$gnusocial_domain
/htdocs/avatar
chmod
a+w /var/www/
$gnusocial_domain
/htdocs/file
chown
-R
www-data:www-data /var/www/
$gnusocial_domain
/htdocs
chmod
+x /var/www/
$gnusocial_domain
/htdocs/scripts/maildaemon.php
# This seems to be necessary to get the UI back
gnusocial_use_classic
$gnusocial_variant
gnusocial_use_qvitter
$gnusocial_variant
# start the daemons
su
-c
"sh scripts/startdaemons.sh"
-s
/bin/sh www-data
}
function
qvitter_update_background
{
domain_name
=
"
$1
"
ext
=
$2
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment