Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
compose.libre.sh
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Timothee Gosselin
compose.libre.sh
Commits
49ed478e
Commit
49ed478e
authored
10 years ago
by
Pierre Ozoux
Browse files
Options
Downloads
Patches
Plain Diff
Hotfixes backup and DRY
parent
8c8e3334
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hotfixes/2015-01-16-moves-backup-to-duplicity.sh
+29
-0
29 additions, 0 deletions
hotfixes/2015-01-16-moves-backup-to-duplicity.sh
hotfixes/2015-01-16-ultimate-DRY.sh
+55
-0
55 additions, 0 deletions
hotfixes/2015-01-16-ultimate-DRY.sh
with
84 additions
and
0 deletions
hotfixes/2015-01-16-moves-backup-to-duplicity.sh
0 → 100644
+
29
−
0
View file @
49ed478e
# START
docker pull pierreozoux/duplicity
gpg
--gen-key
gpg
--list-keys
echo
ENCRYPT_KEY
=
""
>>
/etc/environment
echo
BACKUP_DESTINATION
=
"backup@backup"
>>
/etc/environment
cd
/data/indiehosters
git pull
cp
/data/indiehosters/unit-files/
*
/etc/systemd/system
&&
sudo
systemctl daemon-reload
for
domain
in
"
${
domains
[@]
}
"
do
systemctl start backup@
$domain
systemctl status backup@
$domain
done
# STOP
# CLEAN START
rm
-rf
/data/import
rm
/data/BACKUP_DESTINATION
su backup
cd
mkdir
old_backups
mv
./
*
old_backups
# CLEAN STOP
This diff is collapsed.
Click to expand it.
hotfixes/2015-01-16-ultimate-DRY.sh
0 → 100644
+
55
−
0
View file @
49ed478e
static_domains
=(
domain1 domain2
)
wordpress_domains
=(
domain1 domain2
)
# START
cd
/data/indiehosters
git pull
cp
/data/indiehosters/unit-files/
*
/etc/systemd/system
&&
sudo
systemctl daemon-reload
docker pull pierreozoux/wordpress
for
domain
in
"
${
static_domains
[@]
}
"
do
folder
=
/data/domains/
${
domain
}
echo
"EMAIL=test@test.org"
>
${
folder
}
/.env
echo
"APPLICATION=nginx"
>>
${
folder
}
/.env
echo
DOCKER_ARGUMENTS
=
"-v
${
folder
}
/static/www-content:/app"
>>
${
folder
}
/.env
systemctl restart static@
$domain
systemctl status static@
$domain
systemctl status web@
$domain
done
for
domain
in
"
${
wordpress_domains
[@]
}
"
do
folder
=
/data/domains/
${
domain
}
echo
"EMAIL=test@test.org"
>
${
folder
}
/.env
echo
"APPLICATION=wordpress"
>>
${
folder
}
/.env
echo
DOCKER_ARGUMENTS
=
"--link mysql-
${
domain
}
:db
\
-v /data/domains/
${
domain
}
/wordpress/data:/app/wp-content
\
-v /data/domains/
${
domain
}
/wordpress/.htaccess:/app/.htaccess
\
--env-file /data/domains/
${
domain
}
/wordpress/.env"
>>
${
folder
}
/.env
systemctl restart lamp@
$domain
systemctl status lamp@
$domain
systemctl status web@
$domain
done
# STOP
# ROLLBACK START
cd
/data/indiehosters
git checkout 65d6486005e3d96e3ad9d5ab17f99d8910cc5e70
cp
/data/indiehosters/unit-files/
*
/etc/systemd/system
&&
sudo
systemctl daemon-reload
cd
dockerfiles/services/wordpress/
docker build
-t
pierreozoux/wordpress
.
for
domain
in
"
${
wordpress_domains
[@]
}
"
do
systemctl restart lamp@
$domain
done
for
domain
in
"
${
static_domains
[@]
}
"
do
systemctl restart static@
$domain
done
# ROLLBACK STOP
# CLEAN START
# CLEAN STOP
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