13 lines
260 B
Bash
13 lines
260 B
Bash
#!/bin/sh
|
|
|
|
post_install() {
|
|
echo " "
|
|
echo "Running the script ckchroot or executing pacman -Qe should only "
|
|
echo "reveal two pkgs jobbot1 and jobbot2. If so you have the proper "
|
|
echo "joborun minimal chroot"
|
|
echo " "
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|