blob: 36c8a9bad8fcea677ce9c8e4dcf9cdaabe6948bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "Usage:"
echo "sudo systemctl enable --now update-github520-hosts.timer"
echo "sudo systemctl start update-github520-hosts.service"
echo "sudo systemctl status update-github520-hosts.service"
echo "cat /etc/hosts"
echo "sudo systemctl start remove-github520-hosts.service"
echo "cat /etc/hosts"
}
post_upgrade() {
post_install
}
|