Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
alpine-conf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
19
Issues
19
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
alpine-conf
Commits
838cb4b1
Commit
838cb4b1
authored
Oct 15, 2007
by
Natanael Copa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean up verbosity
parent
4c6317c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
lbu
lbu
+11
-11
No files found.
lbu
View file @
838cb4b1
...
...
@@ -213,25 +213,25 @@ cmd_package() {
#
create
tar
archive
[
-
f
"$EXCLUDE_LIST"
]
&&
excl
=
"-X $EXCLUDE_LIST"
[
-
f
"$INCLUDE_LIST"
]
&&
incl
=
"-T $INCLUDE_LIST"
if
[
-
z
"$ENCRYPTION"
];
then
tar
$
VERBOSE
$
excl
$
incl
-
c
$
currentlist
\
|
gzip
-
c
>
"$tmppkg"
if
[
-
n
"$VERBOSE"
];
then
echo
"Archiving the following files:"
>&
2
#
we
dont
want
to
mess
the
tar
output
with
the
#
password
prompt
.
Lets
get
the
tar
output
first
.
tar
$
excl
$
incl
-
c
-
v
$
currentlist
>
/
dev
/
null
rc
=$?
else
if
[
-
n
"$VERBOSE"
];
then
echo
"Archiving the following files:"
>&
2
#
we
dont
want
to
mess
the
tar
output
with
the
#
password
prompt
.
Lets
get
the
tar
output
first
.
tar
$
excl
$
incl
-
c
-
v
$
currentlist
>
/
dev
/
null
fi
if
[
$
rc
-
eq
0
];
then
if
[
-
z
"$ENCRYPTION"
];
then
tar
$
excl
$
incl
-
c
$
currentlist
|
gzip
-
c
>
"$tmppkg"
rc
=$?
fi
if
[
$
rc
-
eq
0
];
then
else
tar
$
excl
$
incl
-
c
$
currentlist
|
gzip
-
c
\
|
$
OPENSSL
enc
"-$ENCRYPTION"
-
salt
>
"$tmppkg"
rc
=$?
fi
fi
#
actually
commit
unless
dryrun
mode
if
[
$
rc
-
eq
0
];
then
[
-
z
"$DRYRUN"
]
&&
cp
"$tmppkg"
"$pkg"
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment