qubes-core-agent.preinst 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #!/bin/sh
  2. # preinst script for core-agent-linux
  3. #
  4. # see: dh_installdeb(1)
  5. set -e
  6. # The preinst script may be called in the following ways:
  7. # * <new-preinst> 'install'
  8. # * <new-preinst> 'install' <old-version>
  9. # * <new-preinst> 'upgrade' <old-version>
  10. #
  11. # The package will not yet be unpacked, so the preinst script cannot rely
  12. # on any files included in its package. Only essential packages and
  13. # pre-dependencies (Pre-Depends) may be assumed to be available.
  14. # Pre-dependencies will have been configured at least once, but at the time the
  15. # preinst is called they may only be in an "Unpacked" or "Half-Configured" state
  16. # if a previous version of the pre-dependency was completely configured and has
  17. # not been removed since then.
  18. #
  19. #
  20. # * <old-preinst> 'abort-upgrade' <new-version>
  21. #
  22. # Called during error handling of an upgrade that failed after unpacking the
  23. # new package because the postrm upgrade action failed. The unpacked files may
  24. # be partly from the new version or partly missing, so the script cannot rely
  25. # on files included in the package. Package dependencies may not be available.
  26. # Pre-dependencies will be at least "Unpacked" following the same rules as
  27. # above, except they may be only "Half-Installed" if an upgrade of the
  28. # pre-dependency failed.[46]
  29. #
  30. # For details, see http://www.debian.org/doc/debian-policy/ or
  31. # https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html or
  32. # the debian-policy package
  33. if [ "$1" = "install" ] ; then
  34. # --------------------------------------------------------------------------
  35. # Create required directories
  36. # --------------------------------------------------------------------------
  37. mkdir -p /var/lib/qubes
  38. mkdir -p /lib/modules
  39. #mkdir -p -m 0700 /var/log/xen # xen-utils-common should do this
  40. # --------------------------------------------------------------------------
  41. # Remove `mesg` from root/.profile?
  42. # --------------------------------------------------------------------------
  43. sed -i -e '/^mesg n/d' /root/.profile
  44. # --------------------------------------------------------------------------
  45. # User add / modifications
  46. # --------------------------------------------------------------------------
  47. id -u 'user' >/dev/null 2>&1 || {
  48. useradd -U -G dialout,cdrom,floppy,sudo,audio,dip,video,plugdev -m -s /bin/bash user
  49. }
  50. id -u 'tinyproxy' >/dev/null 2>&1 || {
  51. useradd -U -r -M --home /run/tinyproxy --shell /bin/false tinyproxy
  52. }
  53. usermod -p '' root
  54. usermod -L user
  55. fi
  56. if [ "$1" = "upgrade" ] ; then
  57. true
  58. fi
  59. # dh_installdeb will replace this with shell code automatically
  60. # generated by other debhelper scripts.
  61. #DEBHELPER#
  62. exit 0
  63. # vim: set ts=4 sw=4 sts=4 et :