Compare commits

..

No commits in common. "125177f35f140abf30797b07a7a195521f6b3608" and "d0302f869492a75be93ee247ec0e2cbdc3373c7a" have entirely different histories.

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 "$$i" ${pkgdir}/usr/local/sbin; done
for i in ${LIST}; do install -m 700 -o root -g root ${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 "$$i" ${pkgdir}/usr/lib/systemd/system; done
for i in ${SYSDLIST}; do install -m 0664 -o root -g root ${pkgdir}/usr/lib/systemd/system; done
# Config
mkdir -p ${pkgdir}/usr/local/etc
install -m 0700 -o root -d ${pkgdir}/usr/local/etc/Aether
install -m 0700 -o aether -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'