8 lines
210 B
Plaintext
8 lines
210 B
Plaintext
|
#!/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
|
||
|
}
|