2
0
mirror of https://github.com/siomiz/chrome synced 2024-11-15 00:15:06 +00:00
chrome-vnc-2/copyables/crdonly
2015-06-18 10:12:27 -07:00

20 lines
838 B
Bash

#!/bin/bash
# make sure to install a new version of ~/.chrome-remote-desktop-session
# where ~ is a volume
cp /crd-session /home/chrome/.chrome-remote-desktop-session
# delete obsolete pulseaudio sockets if left from previous sessions
rm -rf /home/chrome/.config/chrome-remote-desktop/pulseaudio*
# only keep 1 host#*.json config file
# (default is to use md5 of hostname, which changes on every docker run)
if test -n "$(find /home/chrome/.config/chrome-remote-desktop -name 'host#*.json' -print -quit)"
then
mv `ls -t /home/chrome/.config/chrome-remote-desktop/host#*.json | head -n 1` /home/chrome/.config/chrome-remote-desktop/~host.json
rm /home/chrome/.config/chrome-remote-desktop/host#*.json
fi
# start supervisor to watch `chrome-remote-desktop` only
/usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord-crdonly.conf