8 lines
210 B
Bash
8 lines
210 B
Bash
#!/bin/bash
|
|
|
|
# Adds a notice that will be shown at the end of garuda-update
|
|
condorlib_add_update_notice() {
|
|
mkdir -p /var/lib/condor/tmp
|
|
echo "$(date +%F) ${1// / }" >>/var/lib/condor/tmp/update_notices
|
|
}
|