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
# Maintainer: Jan Magnus Brevik <janmbrevik at gmail dot com> | |
# Contributor: Rubén Fdes Moreira <[email protected]> | |
# Contributor: Sigmund Vestergaard <sigmundv at gmail dot com> | |
# Contributor: MacCyber <jonas.enge at gmail dot com> | |
# Contributor: Doug Newgard <scimmia22 at outlook dot com> | |
# Contributor: Jonas Heinrich <[email protected]> | |
# Contributor: Antti Hautaniemi <an7oine at me com> | |
pkgname=acestream-engine | |
pkgver=3.1.16 |
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
# docker-compose logs | |
Attaching to dockerhub-webhook | |
dockerhub-webhook | 170315/223033.121, [log,Server running at: http://c1b4519c9fc3:3000] data: (none) | |
dockerhub-webhook | 170315/223033.131, [log,Serving hook at: http://c1b4519c9fc3:3000/api/abc123] data: (none) | |
dockerhub-webhook | 170315/223524.262, (1489617324242:c1b4519c9fc3:7:j0bjiqtg:10000) [request,debug] data: Payload from docker hub: | |
dockerhub-webhook | 170315/223524.263, (1489617324242:c1b4519c9fc3:7:j0bjiqtg:10000) [request,debug] data: {"push_data":{"pushed_at":1489617323,"images":[],"tag":"latest","pusher":"maccyber"},"callback_url":"https://registry.hub.docker.com/u/maccyber/maccyber.io/hook/*sens*/","repository":{"status":"Active","description":"Website maccyber.io","is_trusted":true,"full_description":"[](https://travis-ci.org/maccyber/maccyber.io)\n[](http |
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
#!/usr/bin/env bash | |
# Finds disk and partition where boot is mounted | |
lsblk -i --output KNAME,TYPE,MOUNTPOINT | while read KNAME TYPE MOUNTPOINT | |
do | |
if [ "$TYPE" = "disk" ]; then | |
SELECTED_DISK="$KNAME" | |
elif [ "$MOUNTPOINT" = "/boot" ]; then | |
printf "Disk: $SELECTED_DISK\nPartition: $KNAME\n" | |
fi | |
done |
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
/** | |
* This code is responsible for implementing all methods related to fetching | |
* and returning data for the Norwegian data sources. | |
*/ | |
'use strict'; | |
import { REQUEST_TIMEOUT } from '../lib/constants'; | |
import { default as baseRequest } from 'request'; | |
const request = baseRequest.defaults({timeout: REQUEST_TIMEOUT}); | |
import { default as moment } from 'moment-timezone'; |
NewerOlder