
This file contains hidden or 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
[Unit] | |
Description=Pi-hole FTLDNS | |
After=network.target | |
Wants=lighttpd.service | |
[Service] | |
Type=forking | |
User=pihole | |
Group=pihole | |
PIDFile=/run/pihole-FTL.pid |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
2018-06-04T23:48:01.488+1000 [DEBUG] plugin.nomad: plugin address: timestamp=2018-06-04T23:48:01.487+1000 address=/tmp/plugin346473367 network=unix | |
2018/06/04 23:48:01.780002 [INFO] driver.docker: purged container 933c38d1af63c453936cb5b0acee0a13a4cba01bffa13a6dad16fb474fa3ee51 | |
2018/06/04 23:48:02.626179 [INFO] driver.docker: created container 5b4ca990c2c2f76412d5079e873ad807f9b05e1aa1fde521d4a973614294471c | |
2018/06/04 23:48:02.836882 [INFO] driver.docker: created container 80fb8ca03792fc571b864a6c3b940825fe96d3d768fd7b6ab36436c10f1d212f | |
2018-06-04T23:48:03.138+1000 [DEBUG] plugin: starting plugin: path=/opt/nomad/bin/nomad args="[/opt/nomad/bin/nomad executor {"LogFile":"/opt/nomad/data/alloc/328a07b3-ed63-193e-7ea5-72bfc03c20e1/inf-bnkng-prod-salesproddefn-bustxnacct-invsvcmaint-v1-exec/executor.out","LogLevel":"INFO"}]" | |
2018-06-04T23:48:03.139+1000 [DEBUG] plugin: waiting for RPC address: path=/opt/nomad/bin/nomad | |
2018-06-04T23:48:03.187+1000 [DEBUG] plugin.nomad: plugin address: timestamp=2018-06-04T23:48: |

This file contains hidden or 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/bash | |
if ! command -v subscription-manager > /dev/null; then echo "Cannot find subscription-manager"; exit 1; fi | |
if ! sudo subscription-manager status | grep -q 'Current'; then echo "Current subscription is not current!"; exit 1; fi | |
if grep -qvF 7.6 <(paste -s </etc/os-release); then if sudo subscription-manager release | grep -Eqv 'Release: 7(\.6|Server)'; then echo "Subscription is not to 7.6 or 7Server. Updating."; sudo subscription-manager release --set=7Server; fi; fi | |
sudo subscription-manager repos --disable="*" --enable=rhel-7-server-rpms --enable=rhel-7-server-supplementary-rpms --enable=rhel-7-server-extras-rpms | |
for repo in $(sudo repoquery --all --qf "%-20{ui_from_repo}" | sed -e 's#^@##g' | sort -u); do | |
if grep -Fqv "${repo}" <(paste -s </etc/yum.repos.d/redhat.repo); then | |
nonrhelrepos+=("${repo}") | |
fi | |
done |
OlderNewer