diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-14 16:31:01 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-14 16:31:01 -0300 |
commit | c07950aded2c117b118eb445d97ab354d5657ab8 (patch) | |
tree | 85f348388332f2d7015b7ad1df0a5fbc2dbb399d | |
parent | d3f902eca81066878dbfbe4bc8ab7ea947314b88 (diff) | |
download | profile-c07950aded2c117b118eb445d97ab354d5657ab8.tar.gz profile-c07950aded2c117b118eb445d97ab354d5657ab8.tar.bz2 |
Test if gnome-keyring-daemon is available
-rwxr-xr-x | xsessionrc.dot.link | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xsessionrc.dot.link b/xsessionrc.dot.link index 4cc07a1..3ceb1b5 100755 --- a/xsessionrc.dot.link +++ b/xsessionrc.dot.link @@ -85,7 +85,7 @@ if which parcellite > /dev/null 2>&1; then fi # Keyring -if [ "$OSVERSION" != "6" ]; then +if [ "$OSVERSION" != "6" ] && which gnome-keyring-daemon &> /dev/null; then # See https://bugzilla.redhat.com/show_bug.cgi?id=783568 # https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/932177 # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=653011 |