summarylogtreecommitdiffstats
path: root/turboprint.install
blob: 6de92fd19f207f445daba5de8379dfd715e64da4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
  post_install
}

# arg 1:  the new package version
post_install() {
  echo "TurboPrint 30 day trial version has been installed."
  echo
  echo "If you have a TurboPrint key for the full version, you may install it as root:"
  echo "  # tpsetup --install turboprint.tpkey"
  echo
  echo "To set up printers in TurboPrint, run tpsetup or xptsetup as root."
  echo
  echo "To configure your system to start TurboPrint automatically:"
  echo "1. Run the following command as root: systemctl enable tprintdaemon"
  echo "2. Run the following command as root: systemctl start tprintdaemon"
  echo
  echo "Additional steps for each user:"
  echo "1. Run /usr/share/turboprint/lib/pipeutility to create /var/spool/turboprint/USERNAME"
  echo "2. Run /usr/lib/turboprint/95turboprint_monitor to create .desktop startup entries"
  echo "3. Log out and log back in"
  echo
  echo "For additional information, see the TurboPrint documentation located at"
  echo "/usr/share/turboprint/doc"
}

# vim:set ts=2 sw=2 et: