
- Wifi-devices will be managed by NetworkManager - (USB-)Dockingstation with same MAC as internal device will be assigned to virbr1 - users with role-teacher have privilege - to create new NetworkManager connections - install additional software - change luks-key - package plasma-discover will not be removed (for teacherlaptops) - http-proxy-Settings will be configured by auto-detect - providing sudo-script to mount default-school from server after wireguard-connection is established
9 lines
417 B
Text
9 lines
417 B
Text
polkit.addRule(function(action, subject) {
|
|
if ((action.id == "org.freedesktop.packagekit.package-install" ||
|
|
action.id == "org.freedesktop.packagekit.package-reinstall" ||
|
|
action.id == "org.freedesktop.packagekit.system-update" ||
|
|
action.id == "org.freedesktop.packagekit.upgrade-system") &&
|
|
subject.isInGroup("role-teacher")) {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|