summaryrefslogtreecommitdiff
path: root/frontend/cgi/Makefile
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-04-27 11:01:01 +0200
committerDaniel Baumann <mail@daniel-baumann.ch>2015-04-28 07:58:14 +0200
commit58bdabe1391f37a9a9e441ce42ef48bd11944843 (patch)
tree5e7bb24c7a43b126c93830b5fce7490bf7b41b2f /frontend/cgi/Makefile
parentd32a3ed292b14f93edf3346cc6dd899c1f33832b (diff)
downloadvyos-live-build-58bdabe1391f37a9a9e441ce42ef48bd11944843.tar.gz
vyos-live-build-58bdabe1391f37a9a9e441ce42ef48bd11944843.zip
Moving cgi to its own source package.
Diffstat (limited to 'frontend/cgi/Makefile')
-rw-r--r--frontend/cgi/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/frontend/cgi/Makefile b/frontend/cgi/Makefile
deleted file mode 100644
index b4eab43d8..000000000
--- a/frontend/cgi/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-# Makefile
-
-install:
- install -D -m 0755 live-build-cgi $(DESTDIR)/usr/lib/cgi-bin/live-build
- install -D -m 0755 live-build-status-cgi $(DESTDIR)/usr/lib/cgi-bin/live-build-status
- install -D -m 0755 live-build-cgi.cron $(DESTDIR)/etc/cron.hourly/live-build-cgi
- install -D -m 0644 live-build-cgi.crontab $(DESTDIR)/etc/cron.d/live-build-cgi
- install -D -m 0644 live-build-cgi.default $(DESTDIR)/etc/default/live-build-cgi
- install -D -m 0644 live-build-cgi.logrotate $(DESTDIR)/etc/logrotate.d/live-build-cgi
-
- install -d -m 0755 $(DESTDIR)/var/log
- touch $(DESTDIR)/var/log/live
- chown www-data:www-data $(DESTDIR)/var/log/live
-
-uninstall:
- rm -f $(DESTDIR)/usr/lib/cgi-bin/live-build
- rm -f $(DESTDIR)/usr/lib/cgi-bin/live-build-status
- rm -f $(DESTDIR)/etc/cron.d/live-build-cgi
- rm -f $(DESTDIR)/etc/cron.hourly/live-build-cgi
- rm -f $(DESTDIR)/etc/default/live-build-cgi
- rm -f $(DESTDIR)/etc/logrotate.d/live-build-cgi
-
-reinstall: uninstall install