/usr/bin/autoradioweb is in autoradio 2.8.6-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | #!/usr/bin/python
# GPL. (C) 2007-2009 Paolo Patruno.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# ToDo:
# controllare gli inserimenti al livello di django ADMIN INTERFACE
# controllare altri conflitti in districa oltre ai jingles
# utilizzare mp3splt per spezzare i programmi per fare gli inserimenti pubblicitari
# alternare meglio i jingle tenendo in considerazione la priorita
# a cavallo della mezzanotte verificare il funzionamento
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'autoradio.settings'
from django.conf import settings
from autoradio import daemon
from autoradio import _version_
from django.core import management
import autoradio.autoradio_config
import autoradio.settings
autoradioweb = daemon.Daemon(
stdin="/dev/null",
stdout=autoradio.settings.logfileweb,
stderr=autoradio.settings.errfileweb,
pidfile=autoradio.settings.lockfileweb,
user=autoradio.settings.userweb,
group=autoradio.settings.groupweb
)
#class mydaemon(daemon):
#
# def optionparser(self):
# op = super(miodaemon, self).optionparser()
# op.add_option("-s", "--syncdb",action="store_false")
# return op
def main():
import os,logging,logging.handlers
formatter=logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s",datefmt="%Y-%m-%d %H:%M:%S")
handler = logging.handlers.RotatingFileHandler(autoradio.settings.logfileweb, maxBytes=5000000, backupCount=10)
handler.setFormatter(formatter)
# Add the log message handler to the root logger
logging.getLogger().addHandler(handler)
logging.getLogger().setLevel(logging.INFO)
logging.info('Starting up autoradioweb version '+_version_)
import django
django.setup()
management.call_command("runserver",autoradio.settings.port,use_reloader=False)
if __name__ == '__main__':
import sys, os
# this is a triky for ubuntu and debian that remove /var/run every boot
# ATTENTION, this should be a security problem
path=os.path.dirname(autoradio.settings.lockfileweb)
if (not os.path.lexists(path) and path == "/var/run/autoradio" ):
os.mkdir(path)
if (os.getuid() == 0):
user=autoradio.settings.userweb
group=autoradio.settings.groupweb
if user is not None and group is not None:
from pwd import getpwnam
from grp import getgrnam
uid = getpwnam<(user)[2]
gid = getgrnam(group)[2]
os.chown(path,uid,gid)
if autoradioweb.service():
sys.stdout.write("Autoradioweb version "+_version_+"\n")
sys.stdout.write("Daemon started with pid %d\n" % os.getpid())
sys.stdout.write("Daemon stdout output\n")
sys.stderr.write("Daemon stderr output\n")
sys.exit(main()) # (this code was run as script)
|