mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
7 lines
118 B
Bash
7 lines
118 B
Bash
#!/bin/sh
|
|
|
|
if ! [ -f /var/spool/atd/.SEQ ]; then
|
|
install -m 600 -o at -g at /dev/null /var/spool/atd/.SEQ
|
|
fi
|
|
|
|
exit 0
|