summarylogtreecommitdiffstats
path: root/cyberghostvpn.install
diff options
context:
space:
mode:
Diffstat (limited to 'cyberghostvpn.install')
-rw-r--r--cyberghostvpn.install21
1 files changed, 21 insertions, 0 deletions
diff --git a/cyberghostvpn.install b/cyberghostvpn.install
new file mode 100644
index 000000000000..10acd806a02b
--- /dev/null
+++ b/cyberghostvpn.install
@@ -0,0 +1,21 @@
+all_off="$(tput sgr0)"
+bold="${all_off}$(tput bold)"
+blue="${bold}$(tput setaf 4)"
+yellow="${bold}$(tput setaf 3)"
+
+note() {
+ printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
+}
+
+post_install() {
+ note "Enable systemd-resolved: systemctl enable systemd-resolved.service"
+ note "Setup your account: cyberghostvpn --setup"
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ rm -rf /usr/local/cyberghost
+}