9 lines
187 B
Bash
9 lines
187 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
source "${PALUDIS_EBUILD_DIR}/echo_functions.bash"
|
||
|
|
||
|
einfo "starting database-update..."
|
||
|
|
||
|
/root/updatedb.sh
|
||
|
updatedb && einfo "updating database finished!" || eerror "failed!"
|