summarylogtreecommitdiffstats
path: root/gnunet.install
blob: 26160eccc0b97ea98ffcf846ef2b23eccd3aaf0a (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
26
27
28
29
30
31
32
post_install() {

	local _PWD_PAIRS_="$(awk -F ':' '$3>=1000 && $3<2000 {print $1":"$6}' '/etc/passwd')"
	local _USER_
	local _GROUP_
	local _CFG_DIR_

	for _PWD_PAIR_ in ${_PWD_PAIRS_}; do
		_USER_="$(echo $_PWD_PAIR_ | cut -d ':' -f 1)"
		_GROUP_="$(id -gn "${_USER_}")"
		_CFG_DIR_="$(echo $_PWD_PAIR_ | cut -d ':' -f 2)/.config"
		test -e "${_CFG_DIR_}/gnunet.conf" || (install -dm700 -o \
			"${_USER_}" -g "${_GROUP_}" "${_CFG_DIR_}" && install \
			-Dm600 -o "${_USER_}" -g "${_GROUP_}" \
			'/etc/skel/.config/gnunet.conf' \
			"${_CFG_DIR_}/gnunet.conf")
	done

	echo
	echo 'Do not forget to add your user to the `gnunet` group, with'
	echo
	echo '    sudo usermod -aG gnunet YOUR-USERNAME'
	echo
	echo 'If later you want to remove your user from the group, launch'
	echo
	echo '    sudo gpasswd --delete YOUR-USERNAME gnunet'
	echo
	echo 'For information on how to use GNUnet plaese refer to the GNUnet article in the'
	echo 'ArchWiki (https://wiki.archlinux.org/title/GNUnet).'
	echo

}