blob: e4ea0aa221e90a74a227195ff04b81adfb849717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
printf '\n'
printf '%s\n' "=== Post installation requirement for 'chrome-pass-hostapp' ==="
printf '\n'
printf '%s\n' "After installing the 'chrome-pass' browser extension,"
printf '%s\n' "the host-app needs to be registered with this add-on."
printf '%s\n' "To do so, you need to run as the user who uses the"
printf '%s\n' "extension the following command from the terminal:"
printf '\n'
printf '%s\n' " chrome_pass install [extension ID]"
printf '\n'
printf '%s\n' "where '[extension ID]' is the ID the 'chrome-pass'"
printf '%s\n' "extension has in your browser."
printf '%s\n' "To retrieve the ID, open inside the browser the url"
printf '%s\n' "chrome://extensions, check the Developer mode and"
printf '%s\n' "click on 'Details' for the 'chrome-pass' extension."
printf '%s\n' "The ID will be shown amongst other information."
printf '\n'
}
post_upgrade() {
post_install "$@"
}
|