source: trunk/debathena/config/lightdm-config/debian/debathena-lightdm-session-setup @ 25604

Revision 25604, 276 bytes checked in by jdreed, 12 years ago (diff)
Ensure session scripts are executable
  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3# This script runs as root at the beginning of a lightdm login session.
4# See 'session-setup-script' in lightdm.conf
5
6PATH=/sbin:/bin:/usr/sbin:/usr/bin
7
8DIR=/usr/share/debathena-lightdm-config/session-setup.d
9
10for i in `run-parts --list $DIR`; do
11    . "$i"
12done
13
Note: See TracBrowser for help on using the repository browser.