From e672d04d46f75d2452ab0c26de0ea93b460d5614 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Mon, 5 Feb 2024 20:34:45 +0200 Subject: [PATCH] rm etc/install Obsolete script that I don't ever remember using --- etc/install | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 etc/install diff --git a/etc/install b/etc/install deleted file mode 100755 index f3f4e21e..00000000 --- a/etc/install +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash -# FOR MY PERSONAL USE ONLY! - -mkdir -p /etc/ -cat oidentd.conf >/etc/oidentd.conf -chmod a+r /etc/oidentd.conf - -mkdir -p /etc/profile.d/ -cat profile.d/mikaela.sh >/etc/profile.d/mikaela.sh -chmod a+r /etc/profile.d/mikaela.sh - -mkdir -p /etc/systemd/system/ -cat systemd/system/oidentd.socket >/etc/systemd/system/oidentd.socket -chmod a+r /etc/systemd/system/oidentd.socket - -mkdir -p /etc/sysctl.d/ -if [ ! -f /etc/sysctl.d/60-mikaela.conf ]; then - cat sysctl.d/60-mikaela.conf >/etc/sysctl.d/60-mikaela.conf - chmod a+r /etc/sysctl.d/60-mikaela.conf -fi - -echo 'If you use systemd or oidentd you should "systemctl daemon-reload"' -echo 'and "systemctl restart oidentd".' -echo 'You should also "sysctl --system -p".'