Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2022-08-26 19:58:38 +0300
committerRobert Adam <dev@robert-adam.de>2022-09-10 18:10:14 +0300
commit4d175635d4a10034640f6b379ebe8e138e2c1d2a (patch)
treece22a648eeefd654f217aaf8ffff7f20aa95ef4b /scripts
parent0f5a5a6cb9e2f852ea4baf095d43fd66507f2204 (diff)
MAINT: Delete mkini scripts
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mkini-win32.bat14
-rwxr-xr-xscripts/mkini.sh18
2 files changed, 0 insertions, 32 deletions
diff --git a/scripts/mkini-win32.bat b/scripts/mkini-win32.bat
deleted file mode 100755
index 72393db38..000000000
--- a/scripts/mkini-win32.bat
+++ /dev/null
@@ -1,14 +0,0 @@
-:: Copyright 2012-2022 The Mumble Developers. All rights reserved.
-:: Use of this source code is governed by a BSD-style license
-:: that can be found in the LICENSE file at the root of the
-:: Mumble source tree or at <https://www.mumble.info/LICENSE>.
-
-:: Copy murmur.ini to murmur.ini.win32, and convert
-:: LF -> CRLF so Windows users can edit murmur.ini in
-:: Notepad.
-::
-:: Note that the 'more' command also expands tabs
-:: to spaces. This isn't a problem right now, since
-:: we don't use tabs in murmur.ini -- and even if
-:: we did, they wouldn't be significant.
-type murmur.ini | more /p > murmur.ini.win32
diff --git a/scripts/mkini.sh b/scripts/mkini.sh
deleted file mode 100755
index 9d299369b..000000000
--- a/scripts/mkini.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#! /bin/bash
-#
-# Copyright 2009-2022 The Mumble Developers. All rights reserved.
-# Use of this source code is governed by a BSD-style license
-# that can be found in the LICENSE file at the root of the
-# Mumble source tree or at <https://www.mumble.info/LICENSE>.
-
-cp murmur.ini murmur.ini.win32
-cp murmur.ini murmur.ini.osx
-cp murmur.ini murmur.ini.system
-
-perl -pi.bak -e 's/^(#|;|)dbus=.*$/\1dbus=system/' murmur.ini.system
-perl -pi.bak -e 's/^(#|;|)logfile=.*$/logfile=\/var\/log\/mumble-server\/mumble-server.log/' murmur.ini.system
-perl -pi.bak -e 's/^(#|;|)pidfile=.*$/pidfile=\/var\/run\/mumble-server\/mumble-server.pid/' murmur.ini.system
-perl -pi.bak -e 's/^(#|;|)database=.*$/database=\/var\/lib\/mumble-server\/mumble-server.sqlite/' murmur.ini.system
-perl -pi.bak -e 's/^(#|;|)uname=.*$/uname=mumble-server/' murmur.ini.system
-
-perl -pi.bak -e 'BEGIN{undef $/;} s/\n/\r\n/smg' murmur.ini.win32