FROM ubuntu:bionic
EXPOSE 2224
ARG HACLUSTER_PASS
RUN apt-get update \
; apt-get -y install systemd tzdata \
; ln -fs /usr/share/zoneinfo/Europe/Athens /etc/localtime && dpkg-reconfigure -f noninteractive tzdata \
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script based on linux-vm-tools for Debian distros. | |
# This script is for Debian based distros, to download and install XRDP+XORGXRDP via | |
# source. | |
# | |
# Major thanks to: http://c-nergy.be/blog/?p=11336 for the tips. | |
# | |
############################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/matt335672/pk-local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
############################################################################### | |
# | |
# Build and setup PulseAudio module for XRDP on MX Linux | |
# | |
############################################################################### | |
pulsever=$(pulseaudio --version | awk '{print $2}') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script based on linux-vm-tools for Debian distros. | |
# This script is for Debian based distros, using systemd, to download and install XRDP+XORGXRDP via | |
# source. | |
# | |
# Major thanks to: http://c-nergy.be/blog/?p=11336 for the tips. | |
# | |
############################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import threading | |
status = 0 | |
def set_interval(func, sec): | |
def func_wrapper(): | |
set_interval(func, sec) | |
func() | |
t = threading.Timer(sec, func_wrapper) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE [master] | |
GO | |
/****** Object: Database [EveStaticData] Script Date: 15/07/2015 15:10:59 ******/ | |
CREATE DATABASE [EveStaticData] | |
CONTAINMENT = NONE | |
ON PRIMARY | |
( NAME = N'ebs_DATADUMP', FILENAME = N'E:\SQL Server 2012\Data\ebs_DATADUMP.mdf' , SIZE = 349184KB , MAXSIZE = UNLIMITED, FILEGROWTH = 51200KB ) | |
LOG ON | |
( NAME = N'ebs_DATADUMP_log', FILENAME = N'E:\SQL Server 2012\Data\ebs_DATADUMP_log.ldf' , SIZE = 208896KB , MAXSIZE = 2048GB , FILEGROWTH = 51200KB ) | |
GO |