]>
Commit | Line | Data |
---|---|---|
40b0879d MT |
1 | /* This file is part of the IPFire Firewall. |
2 | * | |
3 | * This program is distributed under the terms of the GNU General Public | |
4 | * Licence. See the file COPYING for details. | |
5 | * | |
6 | */ | |
7 | ||
8 | #include <stdlib.h> | |
9 | #include <stdio.h> | |
10 | #include <string.h> | |
11 | #include <unistd.h> | |
12 | #include <sys/types.h> | |
13 | #include <fcntl.h> | |
14 | #include "setuid.h" | |
15 | ||
1179dc27 MT |
16 | #define BUFFER_SIZE 1024 |
17 | ||
18 | char command[BUFFER_SIZE]; | |
19 | ||
40b0879d MT |
20 | int main(int argc, char *argv[]) { |
21 | ||
614f54b9 MT |
22 | if (!(initsetuid())) |
23 | exit(1); | |
40b0879d | 24 | |
614f54b9 MT |
25 | if (argc < 2) { |
26 | fprintf(stderr, "\nNo argument given.\n\nsmartctrl <device>\n\n"); | |
27 | exit(1); | |
28 | } | |
29 | ||
30 | ||
6e2dba42 | 31 | sprintf(command, "/var/run/hddshutdown-%s", argv[1]); |
614f54b9 MT |
32 | FILE *fp = fopen(command,"r"); |
33 | if( fp ) { | |
34 | fclose(fp); | |
35 | printf("\nDisk %s is in Standby. Do nothing because we won't wakeup\n",argv[1]); | |
36 | exit(1); | |
40b0879d | 37 | } |
40b0879d | 38 | |
cad1f34b | 39 | sprintf(command, "smartctl -iHA /dev/%s", argv[1]); |
614f54b9 MT |
40 | safe_system(command); |
41 | ||
42 | return 0; | |
40b0879d | 43 | } |