Compare commits

...

2 Commits

Author SHA1 Message Date
DarkFeather 125177f35f
Not using aether as install user 2023-12-07 12:43:37 -06:00
DarkFeather d85ca04a18
install operand issue 2023-12-07 12:40:48 -06:00
1 changed files with 3 additions and 3 deletions

View File

@ -9,13 +9,13 @@ compile:
install: compile ${LIST} ${SYSDLIST}
# Scripts
mkdir -p ${pkgdir}/usr/local/sbin
for i in ${LIST}; do install -m 700 -o root -g root ${pkgdir}/usr/local/sbin; done
for i in ${LIST}; do install -m 700 -o root -g root "$$i" ${pkgdir}/usr/local/sbin; done
# systemd
mkdir -p ${pkgdir}/usr/lib/systemd/system
for i in ${SYSDLIST}; do install -m 0664 -o root -g root ${pkgdir}/usr/lib/systemd/system; done
for i in ${SYSDLIST}; do install -m 0664 -o root -g root "$$i" ${pkgdir}/usr/lib/systemd/system; done
# Config
mkdir -p ${pkgdir}/usr/local/etc
install -m 0700 -o aether -d ${pkgdir}/usr/local/etc/Aether
install -m 0700 -o root -d ${pkgdir}/usr/local/etc/Aether
clean:
@bash -c 'printf "This will irreversibly destroy all backups. Confirm? [YES/no] " ; read answer; [ "$$answer" == "YES" ] && exit 0; exit 1'