Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
lyz
backupninja
Commits
e5098e0c
Commit
e5098e0c
authored
19 years ago
by
intrigeri
Browse files
Options
Downloads
Patches
Plain Diff
handlers/pgsql: make use of the new lib/vserver functionality
parent
a99d0598
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+2
-0
2 additions, 0 deletions
ChangeLog
handlers/pgsql
+13
-12
13 additions, 12 deletions
handlers/pgsql
with
15 additions
and
12 deletions
ChangeLog
+
2
−
0
View file @
e5098e0c
...
@@ -17,6 +17,8 @@ version 0.9.3 -- unreleased
...
@@ -17,6 +17,8 @@ version 0.9.3 -- unreleased
. now works when multiple vservers names are given (separated by space)
. now works when multiple vservers names are given (separated by space)
in vsnames config variable
in vsnames config variable
. make use of new lib/vserver functionality
. make use of new lib/vserver functionality
pgsql
. make use of new lib/vserver functionality
rdiff
rdiff
. make use of new lib/vserver functionality
. make use of new lib/vserver functionality
. fixed globbing bug in include, exclude and vsinclude options
. fixed globbing bug in include, exclude and vsinclude options
...
...
This diff is collapsed.
Click to expand it.
handlers/pgsql
+
13
−
12
View file @
e5098e0c
...
@@ -12,19 +12,20 @@ localhost=`hostname`
...
@@ -12,19 +12,20 @@ localhost=`hostname`
# If vservers are configured, decide if the handler should
# If vservers are configured, decide if the handler should
# use them or if it should just operate on the host
# use them or if it should just operate on the host
if
[
"
$vservers
"
==
"yes"
]
;
then
local
usevserver
=
no
if
[
!
-z
$vsname
]
;
then
if
[
$vservers_are_available
=
yes
]
;
then
info
"using vserver '
$vsname
'"
if
!
vservers_exist
"
$vsname
"
;
then
usevserver
=
1
fatal
"At least one of the vservers listed in vsnames (
$vsnames
) does not exist."
else
else
info
"no vserver name specified, actions will be performed on the host"
info
"using vserver '
$vsname
'"
usevserver
=
yes
fi
fi
fi
fi
# As needed, make sure that :
# As needed, make sure that :
# * the specified vserver exists and is running
# * the specified vserver exists and is running
# * the specified vserver or host has the needed executables
# * the specified vserver or host has the needed executables
if
[
$usevserver
]
;
then
if
[
$usevserver
=
yes
]
;
then
info
"examining vserver '
$vsname
'"
info
"examining vserver '
$vsname
'"
# does it exist ?
# does it exist ?
vroot
=
"
$VROOTDIR
/
$vsname
"
vroot
=
"
$VROOTDIR
/
$vsname
"
...
@@ -58,10 +59,10 @@ fi
...
@@ -58,10 +59,10 @@ fi
[
-d
$vroot$backupdir
]
||
fatal
"Backup directory '
$vroot$backupdir
'"
[
-d
$vroot$backupdir
]
||
fatal
"Backup directory '
$vroot$backupdir
'"
# give backup dir the good uid and permissions
# give backup dir the good uid and permissions
# (in respect to the vserver, if $usevserver)
# (in respect to the vserver, if $usevserver
= yes
)
pguid
=
`
getent passwd postgres |
awk
-F
:
'{print $3}'
`
pguid
=
`
getent passwd postgres |
awk
-F
:
'{print $3}'
`
[
-n
"
$pguid
"
]
||
\
[
-n
"
$pguid
"
]
||
\
fatal
"No user called postgres
`
[
$usevserver
!
=
1
]
||
echo
\"
on vserver
$vsname
\"
`
."
fatal
"No user called postgres
`
[
$usevserver
=
no
]
||
echo
\"
on vserver
$vsname
\"
`
."
debug
"chown
$pguid
$vroot$backupdir
"
debug
"chown
$pguid
$vroot$backupdir
"
chown
$pguid
$vroot$backupdir
chown
$pguid
$vroot$backupdir
debug
"chmod 700
$vroot$backupdir
"
debug
"chmod 700
$vroot$backupdir
"
...
@@ -69,7 +70,7 @@ chmod 700 $vroot$backupdir
...
@@ -69,7 +70,7 @@ chmod 700 $vroot$backupdir
# if $databases = all, use pg_dumpall
# if $databases = all, use pg_dumpall
if
[
"
$databases
"
==
"all"
]
;
then
if
[
"
$databases
"
==
"all"
]
;
then
if
[
$usevserver
]
;
then
if
[
$usevserver
=
yes
]
;
then
execstr
=
"
$VSERVER
$vsname
exec su - postgres -c
$PGSQLDUMPALL
>
$backupdir
/
${
vsname
}
.sql"
execstr
=
"
$VSERVER
$vsname
exec su - postgres -c
$PGSQLDUMPALL
>
$backupdir
/
${
vsname
}
.sql"
else
else
execstr
=
"su - postgres -c
$PGSQLDUMPALL
>
$backupdir
/
${
localhost
}
-all.sql"
execstr
=
"su - postgres -c
$PGSQLDUMPALL
>
$backupdir
/
${
localhost
}
-all.sql"
...
@@ -90,7 +91,7 @@ if [ "$databases" == "all" ]; then
...
@@ -90,7 +91,7 @@ if [ "$databases" == "all" ]; then
# else use pg_dump on each specified database
# else use pg_dump on each specified database
else
else
for
db
in
$databases
;
do
for
db
in
$databases
;
do
if
[
$usevserver
]
if
[
$usevserver
=
yes
]
then
then
execstr
=
"
$VSERVER
$vsname
exec su - postgres -c
$PGSQLDUMP
$db
>
$backupdir
/
${
db
}
.sql"
execstr
=
"
$VSERVER
$vsname
exec su - postgres -c
$PGSQLDUMP
$db
>
$backupdir
/
${
db
}
.sql"
else
else
...
...
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