diff options
author | Mauro Sardara <msardara@cisco.com> | 2020-09-11 11:50:43 +0200 |
---|---|---|
committer | Mauro Sardara <msardara@cisco.com> | 2020-09-11 11:50:43 +0200 |
commit | 9c1aa190114dcd0be16dd4ce49459955fc4f7434 (patch) | |
tree | 972ba743c7b1cfbbabd38024215af670d4dc2e3c /hicn-light/config | |
parent | 742b2d4ffdccfeae2af31af78888eb10ea4ef28c (diff) |
[HICN-638] Check if systemd is running before enabling hicn-light service.
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Change-Id: I3864fdab16b20f1cd03d421a356d8bb9227bdf6f
Diffstat (limited to 'hicn-light/config')
-rwxr-xr-x | hicn-light/config/post | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hicn-light/config/post b/hicn-light/config/post index dced2a093..91f596050 100755 --- a/hicn-light/config/post +++ b/hicn-light/config/post @@ -1,3 +1,5 @@ #!/bin/bash -systemctl enable hicn-light
\ No newline at end of file +if pidof systemd; then + systemctl enable hicn-light +fi |