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
Custom issue tracker
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
Liberate
backupninja
Commits
56c99266
Commit
56c99266
authored
18 years ago
by
intrigeri
Browse files
Options
Downloads
Patches
Plain Diff
sys: fix bug when vrootdir is on its own partition
parent
5eef842c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
handlers/sys
+20
-32
20 additions, 32 deletions
handlers/sys
with
21 additions
and
32 deletions
ChangeLog
+
1
−
0
View file @
56c99266
...
...
@@ -6,6 +6,7 @@ version 0.9.5 -- unreleased
handler changes
sys:
. Fixed typo breaking things for VServers.
. Fix bug when vrootdir is on its own partition.
fixed automake 'make install' bug that failed if /etc/backup.d already
existed
...
...
This diff is collapsed.
Click to expand it.
handlers/sys
+
20
−
32
View file @
56c99266
...
...
@@ -80,37 +80,22 @@ fi
#
if
[
"
$packages
"
==
"yes"
]
;
then
if
[
$usevserver
=
yes
]
then
nodpkg
=
"lost+found|ARCHIVES"
info
"vserver root directory set to:
$VROOTDIR
"
for
vserver
in
$found_vservers
do
info
"examining vserver:
$vserver
"
running
=
`
$VSERVERINFO
$vserver
RUNNING
`
if
[
"
$running
"
=
"1"
]
;
then
if
[
!
-x
"
$VROOTDIR
/
$vserver
`
$VSERVER
$vserver
exec
which
$packagemgr
`
"
]
;
then
warning
"can't find
$packagemgr
in vserver
$vserver
, skipping installed packages report."
nodpkg
=
"
$nodpkg
|
$vserver
"
fi
else
nodpkg
=
"
$nodpkg
|
$vserver
"
fi
done
else
if
[
-z
"
$packagemgr
"
-o
!
-x
"
$packagemgr
"
]
;
then
warning
"can't find
${
packagemgr
}
, skipping installed packages report."
packages
=
"no"
fi
fi
fi
if
[
"
$packages
"
==
"yes"
]
;
then
if
[
$usevserver
=
yes
]
then
for
vserver
in
`
ls
$VROOTDIR
|
grep
-E
-v
$nodpkg
`
do
if
[
$usevserver
=
yes
]
;
then
info
"vserver root directory set to:
$VROOTDIR
"
for
vserver
in
$found_vservers
;
do
info
"examining vserver:
$vserver
"
# is it running ?
$VSERVERINFO
-q
$vserver
RUNNING
if
[
$?
-ne
0
]
;
then
warning
"The vserver
$vserver
is not running."
continue
fi
# is $packagemgr available inside $vserver ?
if
[
!
-x
"
$VROOTDIR
/
$vserver
`
$VSERVER
$vserver
exec
which
$packagemgr
`
"
]
;
then
warning
"can't find
$packagemgr
in vserver
$vserver
, skipping installed packages report."
continue
fi
# don't expand * since it can be used in $packagemgroptions
set
-o
noglob
debug
"
$VSERVER
$vserver
exec
$packagemgr
$packagemgroptions
>
$VROOTDIR
/
$vserver$packagesfile
"
...
...
@@ -119,14 +104,17 @@ if [ "$packages" == "yes" ]; then
done
fi
# We want to perform this on the host as well
if
[
"
$packages
"
==
"yes"
]
;
then
# We want to perform this on the host as well
if
[
-z
"
$packagemgr
"
-o
!
-x
"
$packagemgr
"
]
;
then
warning
"can't find
${
packagemgr
}
, skipping installed packages report."
else
# don't expand * since it can be used in $packagemgroptions
set
-o
noglob
debug
"
$packagemgr
$packagemgroptions
>
$packagesfile
"
$packagemgr
$packagemgroptions
>
$packagesfile
||
fatal
"can not save
$packagemgr
info to
$packagesfile
"
set
+o noglob
fi
fi
## System report ##############################
...
...
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