diff options
author | June McEnroe <june@causal.agency> | 2024-05-22 17:55:09 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2024-05-22 17:55:09 -0400 |
commit | 53ab5154b03c69430039796dc7b453bbb68c34b7 (patch) | |
tree | 3fb077351c16735f4b8b0c43c8f1402b52e31208 /Makefile | |
parent | Fix style character handling bug (diff) | |
download | catgirl-53ab5154b03c69430039796dc7b453bbb68c34b7.tar.gz catgirl-53ab5154b03c69430039796dc7b453bbb68c34b7.zip |
Remove scripts related to chroot for ssh
Kiosk mode is removed already, and that set up used it.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile b/Makefile index 66fb408..e08e8e3 100644 --- a/Makefile +++ b/Makefile @@ -72,16 +72,3 @@ install: ${BINS} ${MANS} uninstall: rm -f ${BINS:%=${DESTDIR}${BINDIR}/%} rm -f ${MANS:%=${DESTDIR}${MANDIR}/man1/%} - -CHROOT_USER = chat -CHROOT_GROUP = ${CHROOT_USER} - -chroot.tar: catgirl catgirl.1 scripts/chroot-prompt.sh scripts/chroot-man.sh -chroot.tar: scripts/build-chroot.sh - sh scripts/build-chroot.sh ${CHROOT_USER} ${CHROOT_GROUP} - -install-chroot: chroot.tar - tar -px -f chroot.tar -C /home/${CHROOT_USER} - -clean-chroot: - rm -fr chroot.tar root |