summaryrefslogtreecommitdiff
path: root/libck-connector/test-connector.c
AgeCommit message (Collapse)AuthorFilesLines
2016-01-23Implement XDG_RUNTIME_DIREric Koegel1-0/+12
This adds support for implementing the runtime dir spec. ConsoleKit2 will create $RUNDIR/users on the first session creation and then $RUNDIR/users/$uid for each user logging in that keeps an active session. CK2 will clean up the $uid folder once all sessions of that user have been closed. CK2 will also attempt to mount the user's rundir as a tmpfs mount owned by the user. This way if CK2 crashes the directory will get cleaned up on next system restart. CK2 will not create a runtime dir for root. http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html https://github.com/ConsoleKit2/ConsoleKit2/issues/41
2007-08-01change user to unix-userWilliam Jon McCann1-1/+1
2007-03-05add a with_parameters function to connectorWilliam Jon McCann1-1/+17
2007-02-28add a test program for the connectorWilliam Jon McCann1-0/+85
Add a simple test app for the connector. Adapted from the example David put in the header.