annotate docker/base/scripts/sat @ 134:4549cf265131

flatpak: install D-Bus .service on each frontend: work around lack of dependency handling in Flatpak by installing D-Bus .service on each frontend. This works because all backend is included in the runtime, but we have to add backend permissions to all frontend, and set --own-name=org.salutatoi.SAT. Furthermore, if one frontend is removed, the symbolic link is removed and the backend will not be launched automatically anymore, even if other frontends are still there. The benefict of this method is that backend has not to be installed manually to use a frontend.
author Goffi <goffi@goffi.org>
date Sun, 15 Jul 2018 16:56:55 +0200
parents d0a5db5b9bdf
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
105
b69056368901 docker: images optimisation:
Goffi <goffi@goffi.org>
parents:
diff changeset
1 #!/bin/sh
b69056368901 docker: images optimisation:
Goffi <goffi@goffi.org>
parents:
diff changeset
2 # account domain is set, then sat is launched with D-Bus activated
116
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
3
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
4 # XXX: exec is not working with Docker and su here for whatever reason, so using trap/wait workaround
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
5 # thanks to cuonglm for the tip (https://unix.stackexchange.com/questions/146756/forward-sigterm-to-child-in-bash/146770#146770)
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
6
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
7 on_sigterm() {
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
8 /usr/bin/sat stop
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
9 # to have a proper exit code
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
10 exit $?
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
11 }
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
12 trap on_sigterm TERM
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
13
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
14 set_account_domain
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
15 eval $(dbus-launch --sh-syntax)
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
16 su -c "/usr/bin/sat $@" sat &
d0a5db5b9bdf docker: fixed bad stopping:
Goffi <goffi@goffi.org>
parents: 105
diff changeset
17 wait $!