wmde-rp/wmde-rp.conf

67 lines
1.4 KiB
Plaintext
Raw Normal View History

2025-04-24 19:57:52 +00:00
#!/bin/sh
NFSSERVER=nfsserver.gs.wikimedia.de
NFSHOMES=/mnt/home
PREFIX=/usr/local/bin/wmde
2025-05-02 06:59:30 +00:00
SYNCPRG=osync
2025-04-24 19:57:52 +00:00
ADMIN_USERS="admin root" # never run roaming profiles for this users
MIN_USER_ID=10000 # no roaming users with id < 10000 (non-IPA-users)
NETGROUPS="wmde-rp-general"
WAIT_FOR_CONFIG=always # always, first or never
WAIT_FOR_FULLSYNC=never # always, first or never
CONFIGDIRS=".config \
2025-05-01 10:40:53 +00:00
.local/share/backgrounds \
.ssh"
2025-04-24 19:57:52 +00:00
2025-05-02 06:59:30 +00:00
CONFIG_DIRS=" \
--exclude='$WMDERPDIRNAME' \
--exclude='.osync_workdir' \
--include='*.kdbx' \
--include='.cache/' \
--include='.cache/keepassxc/***' \
--exclude='.cache' \
--exclude='*/.cache' \
--exclude='.cache2' \
--exclude='*/.cache2' \
--exclude='.thunderbird/*/ImapMail/' \
--include='.thunderbird' \
--include='.firefox/***' \
--include='.local/' \
--include='.local/share/' \
--include='.local/share/backgrounds/***' \
--include=.config/*** \
--exclude='*' \
"
2025-04-24 19:57:52 +00:00
2025-05-02 06:59:30 +00:00
FULL_DIRS=" \
--exclude='$WMDERPDIRNAME' \
--exclude='.osync_workdir' \
--exclude='.cache' \
--exclude='*/.cache' \
--exclude='.cache2' \
--exclude='*/.cache2' \
--exclude='.thunderbird/*/ImapMail/'\
--exclude='Downloads' \
--exclude='VirtualBox VMs' \
--include='*' \
"
PERM_DIRS=" \
--exclude='$WMDERPDIRNAME' \
--exclude='.osync_workdir' \
--exclude='.cache' \
--exclude='*/.cache' \
--exclude='.cache2' \
--exclude='*/.cache2' \
--exclude='.thunderbird/*/ImapMail/' \
--include='*' \
"
2025-04-24 19:57:52 +00:00