Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
systemd
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
steam
systemd
Commits
96551bae
Commit
96551bae
authored
Jun 21, 2010
by
Lennart Poettering
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
notify: add systemd-notify --booted
parent
40473a70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
src/notify.c
src/notify.c
+13
-2
No files found.
src/notify.c
View file @
96551bae
...
...
@@ -35,6 +35,7 @@
static
bool
arg_ready
=
false
;
static
pid_t
arg_pid
=
0
;
static
const
char
*
arg_status
=
NULL
;
static
bool
arg_booted
=
false
;
static
int
help
(
void
)
{
...
...
@@ -43,7 +44,8 @@ static int help(void) {
" -h --help Show this help
\n
"
" --ready Inform the init system about service start-up completion
\n
"
" --pid[=PID] Set main pid of daemon
\n
"
" --status=TEXT Set status text
\n
"
,
" --status=TEXT Set status text
\n
"
" --booted Returns 0 if the system was booted up with systemd, non-zero otherwise
\n
"
,
program_invocation_short_name
);
return
0
;
...
...
@@ -54,7 +56,8 @@ static int parse_argv(int argc, char *argv[]) {
enum
{
ARG_READY
=
0x100
,
ARG_PID
,
ARG_STATUS
ARG_STATUS
,
ARG_BOOTED
};
static
const
struct
option
options
[]
=
{
...
...
@@ -62,6 +65,7 @@ static int parse_argv(int argc, char *argv[]) {
{
"ready"
,
no_argument
,
NULL
,
ARG_READY
},
{
"pid"
,
optional_argument
,
NULL
,
ARG_PID
},
{
"status"
,
required_argument
,
NULL
,
ARG_STATUS
},
{
"booted"
,
no_argument
,
NULL
,
ARG_BOOTED
},
{
NULL
,
0
,
NULL
,
0
}
};
...
...
@@ -98,6 +102,10 @@ static int parse_argv(int argc, char *argv[]) {
arg_status
=
optarg
;
break
;
case
ARG_BOOTED
:
arg_booted
=
true
;
break
;
case
'?'
:
return
-
EINVAL
;
...
...
@@ -123,6 +131,9 @@ int main(int argc, char* argv[]) {
goto
finish
;
}
if
(
arg_booted
)
return
sd_booted
()
<=
0
;
if
(
arg_ready
)
our_env
[
i
++
]
=
(
char
*
)
"READY=1"
;
...
...
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