Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
metadata-collect-agent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
Xiaowu Zhang
metadata-collect-agent
Commits
56107efc
Commit
56107efc
authored
Oct 14, 2020
by
Leo Le Bouter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dracut.module: Print correct names for missing env vars
parent
b6936735
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
dracut.module/90metadata-collect/metadata-collect-agent
dracut.module/90metadata-collect/metadata-collect-agent
+1
-0
dracut.module/Makefile
dracut.module/Makefile
+3
-3
No files found.
dracut.module/90metadata-collect/metadata-collect-agent
0 → 120000
View file @
56107efc
/home/lle-bout/Projects/metadata-collect-agent/target/x86_64-unknown-linux-musl/release/metadata-collect-agent
\ No newline at end of file
dracut.module/Makefile
View file @
56107efc
...
...
@@ -3,15 +3,15 @@ dracut_module: 90metadata-collect/metadata-collect-agent 90metadata-collect/coll
include
collect-sh-template.mk
90metadata-collect/collect.sh
:
@
if
[
"
${ERP5_USER}
"
=
""
]
;
then
\
echo
"Environment variable
$*
not set"
;
\
echo
"Environment variable
ERP5_USER
not set"
;
\
exit
1
;
\
fi
@
if
[
"
${ERP5_PASS}
"
=
""
]
;
then
\
echo
"Environment variable
$*
not set"
;
\
echo
"Environment variable
ERP5_PASS
not set"
;
\
exit
1
;
\
fi
@
if
[
"
${ERP5_BASE_URL}
"
=
""
]
;
then
\
echo
"Environment variable
$*
not set"
;
\
echo
"Environment variable
ERP5_BASE_URL
not set"
;
\
exit
1
;
\
fi
...
...
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