-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add upgrades-status-notify and upgrades-installed-check to archlinux …
…package
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ noextract=() | |
md5sums=(SKIP) | ||
|
||
build() { | ||
for source in autostart-dropins applications-dropins app-menu qubes-rpc misc passwordless-root Makefile vm-init.d vm-systemd network init version doc setup.py qubesagent boot; do | ||
for source in autostart-dropins applications-dropins app-menu qubes-rpc misc package-managers passwordless-root Makefile vm-init.d vm-systemd network init version doc setup.py qubesagent boot; do | ||
# shellcheck disable=SC2154 | ||
ln -sf "../$source" "$srcdir" | ||
done | ||
|
@@ -95,6 +95,10 @@ package_qubes-vm-core() { | |
echo "Installing repository for release ${release}" | ||
install -m 644 "$srcdir/PKGBUILD-qubes-repo-${release}.conf" "${pkgdir}/etc/pacman.d/99-qubes-repository-${release}.conf.disabled" | ||
|
||
# Install upgrade check scripts | ||
install -m 0755 "$srcdir/package-managers/upgrades-installed-check" "${pkgdir}/usr/lib/qubes/" | ||
install -m 0755 "$srcdir/package-managers/upgrades-status-notify" "${pkgdir}/usr/lib/qubes/" | ||
|
||
# Archlinux specific: enable autologin on tty1 | ||
mkdir -p "$pkgdir/etc/systemd/system/[email protected]/" | ||
cat <<EOF > "$pkgdir/etc/systemd/system/[email protected]/autologin.conf" | ||
|