This repository has been archived by the owner on Mar 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 120
add systemd units #94
Open
tompscanlan
wants to merge
3
commits into
vmware-archive:master
Choose a base branch
from
tompscanlan:systemd-units
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# | ||
# systemd unit configuration | ||
# | ||
[Unit] | ||
Description=Little Internet of Things Agent Daemon | ||
|
||
[Service] | ||
ExecStart=/etc/liota/packages/liotad.py | ||
|
||
[Install] | ||
WantedBy=multi-user.target | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I`m not sure but I think better to add a new line in both the files liotad.service & liotad.socket http://stackoverflow.com/questions/729692/why-should-text-files-end-with-a-newline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[Socket] | ||
ListenFIFO=/var/tmp/liota/package_messenger.fifo | ||
|
||
[Install] | ||
WantedBy=sockets.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,8 +125,11 @@ | |
'packages/examples/iotcc_thermistor_simulated.py']), | ||
(os.path.abspath(os.sep) + '/../etc/liota/packages/edge_systems/dell5k', | ||
['packages/edge_systems/dell5k/edge_system.py']), | ||
(os.path.abspath(os.sep) + '/../etc/liota/scripts', | ||
(os.path.abspath(os.sep) + '/../etc/liota/scripts', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add the new dependencies in Manifest.in file |
||
['scripts/autostartliota']), | ||
(os.path.abspath(os.sep) + '/../lib/systemd/system', | ||
['scripts/liotad.socket', | ||
'scripts/liotad.service']), | ||
(os.path.abspath(os.sep) + '/../etc/liota/conf', | ||
['config/liota.conf', 'config/logging.json']), | ||
(os.path.abspath(os.sep) + '/../etc/liota', | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should it be liotad.service & liotad.socket?
Also, I cloned your branch and will try out this commands on Fedora VM. What is the prime job of these commands? Also, I think if liota daemon gets started then we won`t require liotad.socket to be started explicitly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tompscanlan
It'll be very helpful if you can provide some information about this change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are correct. Fixing that.