Skip to content

Commit

Permalink
debootstrap: include "dbus-user-session" packkage
Browse files Browse the repository at this point in the history
  • Loading branch information
shinosaki committed Feb 22, 2024
1 parent ffa3a14 commit f3fb70e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion debian/debootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash
debootstrap --arch $ARCH $DEB_SUITE ./work $DEB_REPO
debootstrap \
--arch $ARCH $DEB_SUITE \
--include=dbus-user-session \
./work $DEB_REPO

tar -C ./work -czf /build/debian-$DEB_SUITE-$ARCH-$(date '+%Y%m%d').tar.gz .
6 changes: 5 additions & 1 deletion ubuntu/debootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash
debootstrap --arch $ARCH $DEB_SUITE ./work $DEB_REPO
debootstrap \
--arch $ARCH $DEB_SUITE \
--include=dbus-user-session \
./work $DEB_REPO

tar -C ./work -czf /build/ubuntu-$DEB_SUITE-$ARCH-$(date '+%Y%m%d').tar.gz .

0 comments on commit f3fb70e

Please sign in to comment.