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
6cdc21cf
Commit
6cdc21cf
authored
18 years ago
by
micah
Browse files
Options
Downloads
Patches
Plain Diff
fix LC_ALL=C sfdisk thing that I missed
parent
913b3850
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
handlers/sys
+1
-1
1 addition, 1 deletion
handlers/sys
with
2 additions
and
1 deletion
ChangeLog
+
1
−
0
View file @
6cdc21cf
...
@@ -37,6 +37,7 @@ version 0.9.5 -- unreleased
...
@@ -37,6 +37,7 @@ version 0.9.5 -- unreleased
that produce warnings about no harddisks found (Closes: #404071)
that produce warnings about no harddisks found (Closes: #404071)
. Fixed example in example.sys to detail the __star__ in partitionsfile and
. Fixed example in example.sys to detail the __star__ in partitionsfile and
note why its necessary (Closes: #409192)
note why its necessary (Closes: #409192)
. Force C locale for sfdisk to ensure english words are found in grep
fixed 'make install' bug that failed if /etc/backup.d already existed
fixed 'make install' bug that failed if /etc/backup.d already existed
changed spaces to tabs in Makefile.am
changed spaces to tabs in Makefile.am
updated examples/Makefile.am and handlers/Makefile.am to include rsnap/rub files
updated examples/Makefile.am and handlers/Makefile.am to include rsnap/rub files
...
...
This diff is collapsed.
Click to expand it.
handlers/sys
+
1
−
1
View file @
6cdc21cf
...
@@ -473,7 +473,7 @@ fi
...
@@ -473,7 +473,7 @@ fi
if
[
"
$partitions
"
==
"yes"
]
;
then
if
[
"
$partitions
"
==
"yes"
]
;
then
if
[
"
$dosfdisk
"
==
"yes"
]
;
then
if
[
"
$dosfdisk
"
==
"yes"
]
;
then
devices
=
`
$SFDISK
-l
2>/dev/null |
grep
"^Disk /dev"
| @AWK@
'{print $2}'
|
cut
-d
:
-f1
`
devices
=
`
LC_ALL
=
C
$SFDISK
-l
2>/dev/null |
grep
"^Disk /dev"
| @AWK@
'{print $2}'
|
cut
-d
:
-f1
`
if
[
"
$devices
"
==
""
]
;
then
if
[
"
$devices
"
==
""
]
;
then
warning
"No harddisks found"
warning
"No harddisks found"
fi
fi
...
...
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