summaryrefslogtreecommitdiff
path: root/install-files/essential-files/usr
diff options
context:
space:
mode:
Diffstat (limited to 'install-files/essential-files/usr')
-rw-r--r--install-files/essential-files/usr/bin/brpaste29
-rw-r--r--install-files/essential-files/usr/lib/os-release5
-rw-r--r--install-files/essential-files/usr/lib/tmpfiles.d/shutdownramfs.conf4
3 files changed, 0 insertions, 38 deletions
diff --git a/install-files/essential-files/usr/bin/brpaste b/install-files/essential-files/usr/bin/brpaste
deleted file mode 100644
index d2f9d867..00000000
--- a/install-files/essential-files/usr/bin/brpaste
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env python3
-
-import urllib.request
-import os
-import json
-
-URL = 'http://paste.baserock.org/documents'
-
-def run(*args):
- if args:
- content = [open(x).read() for x in args]
- extensions = [os.path.splitext(x)[1] for x in args]
- else:
- content = [sys.stdin.read()]
- extensions = [None]
-
- for i, each in enumerate(content):
- req = urllib.request.Request(URL, each.encode('utf-8'))
- response = urllib.request.urlopen(req)
- the_page = response.read().decode('utf-8')
- key = json.loads(the_page)['key']
- url = "http://paste.baserock.org/%s" % key
- if extensions[i]:
- url += extensions[i]
- print(url)
-
-if __name__ == '__main__':
- import sys
- sys.exit(run(*sys.argv[1:]))
diff --git a/install-files/essential-files/usr/lib/os-release b/install-files/essential-files/usr/lib/os-release
deleted file mode 100644
index b729c75f..00000000
--- a/install-files/essential-files/usr/lib/os-release
+++ /dev/null
@@ -1,5 +0,0 @@
-NAME="Baserock"
-ID=baserock
-HOME_URL="http://wiki.baserock.org"
-SUPPORT_URL="http://wiki.baserock.org/mailinglist"
-BUG_REPORT_URL="http://wiki.baserock.org/mailinglist"
diff --git a/install-files/essential-files/usr/lib/tmpfiles.d/shutdownramfs.conf b/install-files/essential-files/usr/lib/tmpfiles.d/shutdownramfs.conf
deleted file mode 100644
index 174f1f03..00000000
--- a/install-files/essential-files/usr/lib/tmpfiles.d/shutdownramfs.conf
+++ /dev/null
@@ -1,4 +0,0 @@
-# If /usr/lib/shutdownramfs has been populated, copy it into /run/initramfs so
-# /run/initramfs/shutdown will be executed on shut-down, so that it may unmount
-# the rootfs.
-C /run/initramfs - - - - /usr/lib/shutdownramfs