should not install to a set home directory

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@6710 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
Kurtis Heimerl
2013-10-15 02:48:38 +00:00
parent e6ce2cfa55
commit a09fa74532
3 changed files with 0 additions and 14 deletions

View File

@@ -1,3 +0,0 @@
#!/bin/bash
sudo /OpenBTS/OpenBTSCLI

View File

@@ -82,7 +82,3 @@ install: OpenBTS OpenBTSCLI OpenBTSDo
mkdir -p "$(DESTDIR)/etc/logrotate.d/"
install rsyslogd.OpenBTS.conf "$(DESTDIR)/etc/rsyslog.d/OpenBTS.conf"
install OpenBTS.logrotate "$(DESTDIR)/etc/logrotate.d/OpenBTS"
mkdir -p "$(DESTDIR)/home/openbts/"
install CLI "$(DESTDIR)/home/openbts/"
install openbtsconfig "$(DESTDIR)/home/openbts/"

View File

@@ -1,7 +0,0 @@
#!/bin/bash
if [ $# -eq '1' ]
then
sqlite3 /etc/OpenBTS/OpenBTS.db "select KEYSTRING,VALUESTRING from CONFIG where KEYSTRING like '%$1%'";
else
sqlite3 /etc/OpenBTS/OpenBTS.db "insert or replace into CONFIG (VALUESTRING,KEYSTRING) values ('$2','$1')";
fi