forked from DE-IBH/apt-dater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.ttymux
37 lines (26 loc) · 1.09 KB
/
README.ttymux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
tty muxer
=========
apt-dater uses a 3rd party tty muxer. In version before apt-dater 1.0.2
only screen(1) was supported. Since apt-dater 1.0.2 tmux(1) is also
supported. The tty muxer backend is selected at compile time.
screen
------
For each session an induvidual screen process is launched. Sessions are
not accessible by other users (limited by screen).
tmux
----
For each host a shared tmux daemon is created by the first session. Sessions
can be shared between users. The default configuration (~/.config/*.xml)
will include global configuration from /etc/apt-dater/. You have to setup
the configured global directories to be accessible by all participating
users:
# addgroup apt-dater
# mkdir /var/cache/apt-dater
# chown :apt-dater /var/cache/apt-dater
# chmod 02770 /var/cache/apt-dater
# mkdir /var/lib/apt-dater
# chown :apt-dater /var/lib/apt-dater
# chmod 02770 /var/lib/apt-dater
Due to the relaxed umask config in /etc/apt-dater/apt-dater.xml and the set
group ID on execution of the directories all files and tmux sockets are
accessible by all users belonging to the group apt-dater.