Skip to content
Snippets Groups Projects

Support ArchLinux level-2 enroll; Add intune-portal pkg; Add instructions & FAQ

Merged Recolic requested to merge arch-l2 into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 31
0
post_upgrade() {
# Restart polkit to get any new authorization actions we put down
systemctl restart polkit.service 2>/dev/null
}
post_install() {
if [ -d /run/systemd/system ] ; then
systemd-tmpfiles --create intune.conf
fi
systemctl --system daemon-reload
systemctl enable intune-daemon.socket --now
post_upgrade
echo "Please run: systemctl enable --now --user intune-agent.timer" 1>&2
}
pre_remove()
{
systemctl disable intune-daemon.socket --now
}
pre_upgrade() {
pre_remove
}
post_remove() {
systemctl --system daemon-reload
}
Loading