summaryrefslogtreecommitdiffstats
path: root/recipes-wam/wam/files/wam-user-setup.sh
blob: 515ea82ecbe4fd9fd6543ce51a4a9dedef18d976 (plain)
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
#!/bin/sh

uid="$1"
bdir=/run/user
udir="$bdir/$uid"
hdir="/home/$uid"

dodir() {
	local x smackset="$1"
	shift
	for x; do
		test -e "$x" || mkdir -m 700 "$x"
		chmod 700 "$x"
		chown "$uid:$uid" "$x"
		chsmack $smackset "$x"
	done
}

dodir '-t -a User::Home' "$hdir/wamdata"

# Initialize lockfile, without this apps will be blocked by SMACK
touch "$udir/wamsocket.lock"
chmod 660 "$udir/wamsocket.lock"
chown "$uid:$uid" "$udir/wamsocket.lock"
chsmack -a User::App-Shared "$udir/wamsocket.lock"