3e779be6f3
CI / lint (push) Failing after 13m4s
CI / test (3.11, ubuntu-latest) (push) Failing after 2m4s
CI / test (3.13, ubuntu-latest) (push) Successful in 13m30s
CI / test (3.14, ubuntu-latest) (push) Successful in 17m21s
CI / test (3.12, ubuntu-latest) (push) Successful in 17m55s
CI / discover-apps-ps (push) Successful in 1m56s
CI / test (3.9, ubuntu-latest) (push) Successful in 13m17s
CI / test (3.10, ubuntu-latest) (push) Successful in 26m21s
CI / audit (push) Successful in 13m38s
Deploy site / deploy (push) Has been cancelled
CI / test (3.14, ubuntu-24.04-arm) (push) Has been cancelled
36 lines
906 B
Bash
Executable File
36 lines
906 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Post-install banner for the winpodx debian package (#255 PR 4).
|
|
#
|
|
# Prints a hint that the user needs to run `winpodx setup` to finish
|
|
# provisioning -- the package install only drops the binary + desktop
|
|
# entry. We don't auto-trigger setup because dpkg postinst runs as
|
|
# root with no TTY, and setup expects user-namespace context + a
|
|
# ~10 min Windows ISO download nobody would expect from a
|
|
# 'sudo apt install' line.
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
cat <<'EOF'
|
|
|
|
[WinPodX] Package installed. Next step:
|
|
- Open WinPodX from your application menu (GUI), OR
|
|
- Run 'winpodx gui' in a terminal
|
|
The GUI's first-run modal offers auto setup / customize wizard / skip.
|
|
|
|
For the curl-like all-in-one experience, run:
|
|
winpodx setup
|
|
|
|
Full docs: https://github.com/kernalix7/winpodx/blob/main/docs/INSTALL.md
|
|
|
|
EOF
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|