% pkg -vv | grep ': {' | sort
FreeBSD-base: {
FreeBSD-ports: {
local-poudriere: {
%
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/sh | |
# | |
# PROVIDE: zenbleed_workaround | |
# REQUIRE: root mountcritlocal microcode_update | |
# BEFORE: SERVERS | |
# KEYWORD: nojail resume | |
# Source: https://gist.github.com/Freaky/2560975d3c94246b86f464b8be75c967 | |
# | |
# Copyright (c) 2023 Thomas Hurst <[email protected]> |
NEW! Fan of the list Diego Peinador has done what I've been too lazy to do for years: stand up an easily-remembered domain for The Rules, complete with one-per-page URL schema - e.g., for Rule 42 just visit https://the-rul.es/42/
Thanks Diego! <3
(subject to additions, but rarely changes)
rule 0: It has to work.
rule 1: As simple as possible.
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
#!/usr/bin/env bash | |
# It is simple script for joining linux system to windows Active Directory domain. | |
# I haven't tested it after the last edit... | |
# Attention!!! This script can completely broken your system! | |
# You should not use it if you don't know what you are doing! | |
# Determining the system in which the script runs. | |
if [[ `cat /etc/centos-release | cut -d' ' -f4 | cut -d. -f1` = 7 ]]; then | |
os="CentOS 7" |