forked from avalluri/tlm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sessiond: create a new process for each session
- Loading branch information
Showing
56 changed files
with
3,139 additions
and
778 deletions.
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
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,13 @@ | ||
#%PAM-1.0 | ||
auth requisite pam_nologin.so | ||
auth [user_unknown=ignore success=ok ignore=ignore default=bad] pam_securetty.so | ||
auth include system-auth | ||
account required pam_nologin.so | ||
account include system-auth | ||
password include system-auth | ||
|
||
session include system-auth | ||
session required pam_systemd.so | ||
session required pam_loginuid.so | ||
session required pam_namespace.so | ||
session optional pam_keyinit.so force revoke |
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,10 @@ | ||
[Unit] | ||
Description=Tizen Login Manager | ||
After=systemd-user-sessions.service systemd-logind.service display-manager.path | ||
Requires=systemd-logind.service display-manager.path | ||
|
||
[Service] | ||
ExecStart=/usr/bin/tlm | ||
|
||
[Install] | ||
WantedBy=graphical.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
tlm (0.0.3-1) unstable; urgency=low | ||
|
||
* Create a new process (tlm-sessiond) for each session | ||
|
||
-- Imran Zaman <[email protected]> Mon, 21 Jul 2014 17:24:53 +0200 | ||
|
||
tlm (0.0.2-2) unstable; urgency=low | ||
|
||
* Update to 0.0.2 | ||
|
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
/usr/bin/tlm | ||
/usr/bin/tlm-sessiond | ||
/usr/lib/*.so.* | ||
/usr/lib/tlm/plugins/*.so* | ||
/etc/tlm.conf | ||
/usr/bin/tlm-client |
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
* Mon Jul 21 2014 Imran Zaman <[email protected]> | ||
- Update to 0.0.3; create a new process (tlm-sessiond) for each session | ||
|
||
* Wed Jun 11 2014 Jussi Laako <[email protected]> | ||
- Depend on gumd on Tizen | ||
|
||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
Name: tlm | ||
Summary: Login manager for Tizen | ||
Version: 0.0.2 | ||
Version: 0.0.3 | ||
Release: 1 | ||
Group: System/Daemons | ||
License: LGPL-2.1+ | ||
|
@@ -76,6 +76,8 @@ rm -rf %{buildroot} | |
%defattr(-,root,root,-) | ||
%doc AUTHORS COPYING INSTALL NEWS README | ||
%{_bindir}/%{name} | ||
%{_bindir}/%{name}-sessiond | ||
%{_bindir}/%{name}-client | ||
%{_libdir}/lib%{name}*.so.* | ||
%{_libdir}/%{name}/plugins/*.so* | ||
%exclude %{_libdir}/tlm/plugins/*.la | ||
|
@@ -97,6 +99,9 @@ rm -rf %{buildroot} | |
|
||
|
||
%changelog | ||
* Mon Jul 21 2014 Imran Zaman <[email protected]> | ||
- Update to 0.0.3; create a new process (tlm-sessiond) for each session | ||
|
||
* Thu Mar 13 2014 Jussi Laako <[email protected]> | ||
- Update to 0.0.2 | ||
|
||
|
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
NULL= | ||
SUBDIRS = common plugins daemon | ||
SUBDIRS = common plugins daemon sessiond utils |
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
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,28 @@ | ||
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> | ||
<node> | ||
<interface name="org.tizen.Tlm.Session"> | ||
<property type='s' name='seatid' access='readwrite'/> | ||
<property type='s' name='username' access='readwrite'/> | ||
<property type='s' name='service' access='readwrite'/> | ||
<property type='s' name='sessionid' access='read'/> | ||
|
||
<method name="sessionCreate"> | ||
<arg name="password" type="s" direction="in"/> | ||
<arg name="environment" type="a{ss}" direction="in"/> | ||
</method> | ||
<method name="sessionTerminate"> | ||
</method> | ||
|
||
<signal name="sessionCreated"> | ||
<arg name="sessionid" type="s" direction="out"/> | ||
</signal> | ||
<signal name="sessionTerminated"> | ||
</signal> | ||
<signal name="error"> | ||
<arg name="error" type="(uis)" direction="out"/> | ||
</signal> | ||
<signal name="authenticated"> | ||
</signal> | ||
|
||
</interface> | ||
</node> |
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
File renamed without changes.
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
Oops, something went wrong.